1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #import <UIKit/UIKit.h>
- @interface CTAssetsGridSelectedView : UIView
- @property (nonatomic, assign) BOOL showsSelectionIndex;
- @property (nonatomic, assign) NSUInteger selectionIndex;
- @property (nonatomic, weak, nullable) UIColor *selectedBackgroundColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR;
- @property (nonatomic, weak, nullable) UIFont *font UI_APPEARANCE_SELECTOR DEPRECATED_MSG_ATTRIBUTE("Use setTextAttributes: of CTAssetSelectionLabel instead.");
- @property (nonatomic, weak, nullable) UIColor *textColor UI_APPEARANCE_SELECTOR DEPRECATED_MSG_ATTRIBUTE("Use setTextAttributes: of CTAssetSelectionLabel instead.");
- @end
|