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

2019-01-07  本文已影响0人  Jacky__燊

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

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

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

上一篇下一篇

猜你喜欢

热点阅读