This repository has been archived by the owner on Feb 16, 2019. It is now read-only.
Version 0.1.1
-
Added
SSCollectionViewItemAnimation
to SSCollectionView -
Added basic tests
-
Documented SSCollectionViewDataSource
-
Documented SSCollectionViewDelegate
-
Added
- (NSArray *)visibleItems
to SSCollectionView -
Added
- (NSArray *)indexPathsForVisibleRows
to SSCollectionView -
Added begin/end updates to SSCollection with the following methods:
- (void)beginUpdates; - (void)endUpdates; - (void)insertItemsAtIndexPaths:(NSArray *)indexPaths withItemAnimation:(SSCollectionViewItemAnimation)animation; - (void)deleteItemsAtIndexPaths:(NSArray *)indexPaths withItemAnimation:(SSCollectionViewItemAnimation)animation; - (void)insertSections:(NSIndexSet *)sections withItemAnimation:(SSCollectionViewItemAnimation)animation; - (void)deleteSections:(NSIndexSet *)sections withItemAnimation:(SSCollectionViewItemAnimation)animation;