tableview默认选中第一行显示选中效果
2016-07-21 本文已影响432人
HeavenWong
// 初始化文字的方法
-(void)initialText
{
if (_isInitial == NO) {
// 两句代码缺一不可
[self.table_view selectRowAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];
[self tableView:self.table_view didSelectRowAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]];//实现点击第一行所调用的方法
_isInitial = YES;
}
}