UITableView和UICollectionView设置默认

2018-04-20  本文已影响0人  angerLE

UITableView和UICollectionView设置默认选择行方法(这里只举例一个另一个类似 不再多说!哈哈!!)

UICollectionView的设置默认选择方法必须reloadData后再进行指定cell设置

[_collectionView reloadData];

  NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];//设置第一行

 [_collectionView selectItemAtIndexPath:indexPath animated:NO scrollPosition:UICollectionViewScrollPositionNone];

上一篇 下一篇

猜你喜欢

热点阅读