Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - (void)switchToSection:(NSInteger)section {
- if (section < [self numberOfSectionsInCollectionView:self.clothesCollectionView]) {
- [self.clothesCollectionView layoutIfNeeded];
- UICollectionViewLayoutAttributes *attributes = [self.clothesCollectionView layoutAttributesForSupplementaryElementOfKind:UICollectionElementKindSectionHeader
- atIndexPath:[NSIndexPath indexPathForRow:0 inSection:section]];
- [self.clothesCollectionView setContentOffset:CGPointMake(0, attributes.frame.origin.y - self.clothesCollectionView.contentInset.top)
- animated:YES];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment