NSIndexPath+PSTCollectionViewAdditions.h 378 B

1234567891011121314151617181920
  1. //
  2. // NSIndexPath+PSTCollectionViewAdditions.h
  3. // PSTCollectionView
  4. //
  5. // Copyright (c) 2013 Peter Steinberger. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #if __IPHONE_OS_VERSION_MIN_REQUIRED < 60000
  9. @interface NSIndexPath (PSTCollectionViewAdditions)
  10. + (NSIndexPath *)indexPathForItem:(NSInteger)item inSection:(NSInteger)section;
  11. - (NSInteger)item;
  12. @end
  13. #endif