开发记录:UITableView默认选中第一行。

度娘上有很多都介绍了默认选中第一行的方法。关键在于这个方法写到哪儿才会生效,不然即便copy、past也没用。

            [self.YourTableView reloadData];
            
            NSIndexPath *ip=[NSIndexPath indexPathForRow:0 inSection:0];
            
            [self.YourTableView selectRowAtIndexPath:ip animated:YES scrollPosition:UITableViewScrollPositionBottom];

写到 UITableView的ReloadData方法之后才管用哦。

你可能感兴趣的:(开发记录:UITableView默认选中第一行。)