12345678910111213141516171819202122232425 |
- //
- // NSIndexPath+PSTCollectionViewAdditions.m
- // PSTCollectionView
- //
- // Copyright (c) 2013 Peter Steinberger. All rights reserved.
- //
- #import "NSIndexPath+PSTCollectionViewAdditions.h"
- #if __IPHONE_OS_VERSION_MIN_REQUIRED < 60000
- @implementation NSIndexPath (PSTCollectionViewAdditions)
- // Simple NSIndexPath addition to allow using "item" instead of "row".
- + (NSIndexPath *)indexPathForItem:(NSInteger)item inSection:(NSInteger)section {
- return [NSIndexPath indexPathForRow:item inSection:section];
- }
- - (NSInteger)item {
- return self.row;
- }
- @end
- #endif
|