collectionView默认选中第一个
2017-12-05 本文已影响585人
lizhi_boy
[self.titleView selectItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0] animated:YES scrollPosition:UICollectionViewScrollPositionNone];
if ([self.titleView.delegate respondsToSelector:@selector(collectionView:didSelectItemAtIndexPath:)]) {
[self.titleView.delegate collectionView:self.titleView didSelectItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]];
}