tableView默认选中第一个值
时间:2015-07-20 12:44:25
收藏:0
阅读:104
// 默认显示第一个数值
if (_bankCodeArray && _bankCodeArray.count > 0) {
[self tableView:_dropTableView didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
}
评论(0)