记录开发中遇到一个问题
collectionView:didSelectItemAtIndexPath:方法有时候不调用,当从其他页面切换回来时又可以调用
解决:
[self.collectionView reloadSections:]
改为[self.collectionView reloadData]
记录开发中遇到一个问题
collectionView:didSelectItemAtIndexPath:方法有时候不调用,当从其他页面切换回来时又可以调用
解决:
[self.collectionView reloadSections:]
改为[self.collectionView reloadData]