Skip to content
This repository has been archived by the owner on Feb 16, 2019. It is now read-only.

Version 0.1.1

Compare
Choose a tag to compare
@soffes soffes released this 04 Jul 05:02
· 180 commits to master since this release
  • 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;