12345678910111213141516171819202122232425262728 |
- #import "PSTCollectionViewCommon.h"
- #import "PSTCollectionViewLayout.h"
- extern NSString *const PSTCollectionElementKindCell;
- extern NSString *const PSTCollectionElementKindDecorationView;
- @class PSTCollectionViewLayoutAttributes;
- NSString *PSTCollectionViewItemTypeToString(PSTCollectionViewItemType type);
- @interface PSTCollectionViewItemKey : NSObject <NSCopying>
- + (id)collectionItemKeyForLayoutAttributes:(PSTCollectionViewLayoutAttributes *)layoutAttributes;
- + (id)collectionItemKeyForCellWithIndexPath:(NSIndexPath *)indexPath;
- @property (nonatomic, assign) PSTCollectionViewItemType type;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @property (nonatomic, strong) NSString *identifier;
- @end
|