1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <UIKit/UIKit.h>
- #import <Photos/Photos.h>
- #import "CTAssetThumbnailView.h"
- @interface CTAssetsGridViewCell : UICollectionViewCell
- @property (nonatomic, assign, getter = isEnabled) BOOL enabled;
- @property (nonatomic, assign) BOOL showsSelectionIndex;
- @property (nonatomic, assign) NSUInteger selectionIndex;
- @property (nonatomic, weak, nullable) UIColor *disabledColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, weak, nullable) UIColor *highlightedColor UI_APPEARANCE_SELECTOR;
- - (void)bind:(nonnull PHAsset *)asset;
- @end
|