1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <UIKit/UIKit.h>
- #import "NSIndexSet+CTAssetsPickerController.h"
- @implementation NSIndexSet (CTAssetsPickerController)
- - (NSArray *)ctassetsPickerIndexPathsFromIndexesWithSection:(NSUInteger)section
- {
- NSMutableArray *indexPaths = [NSMutableArray arrayWithCapacity:self.count];
-
- [self enumerateIndexesUsingBlock:^(NSUInteger index, BOOL *stop) {
- [indexPaths addObject:[NSIndexPath indexPathForItem:index inSection:section]];
- }];
-
- return indexPaths;
- }
- @end
|