美文网首页
UITableView和UICollectionView设置默认

UITableView和UICollectionView设置默认

作者: angerLE | 来源:发表于2018-04-20 22:24 被阅读0次

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

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

[_collectionView reloadData];

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

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

相关文章

网友评论

      本文标题:UITableView和UICollectionView设置默认

      本文链接:https://www.haomeiwen.com/subject/genikftx.html