123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #import <UIKit/UIKit.h>
- @interface CTAssetSelectionLabel : UILabel
- #pragma mark Customizing Appearance
- @property (nonatomic, assign, getter=isCircular) BOOL circular UI_APPEARANCE_SELECTOR DEPRECATED_MSG_ATTRIBUTE("Use setCornerRadius: instead.");
- @property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR;
- @property (nonatomic, weak) UIColor *borderColor UI_APPEARANCE_SELECTOR;
- - (void)setSize:(CGSize)size UI_APPEARANCE_SELECTOR;
- - (void)setCornerRadius:(CGFloat)cornerRadius UI_APPEARANCE_SELECTOR;
- - (void)setMargin:(CGFloat)margin UI_APPEARANCE_SELECTOR;
- - (void)setMargin:(CGFloat)margin forVerticalEdge:(NSLayoutAttribute)edgeX horizontalEdge:(NSLayoutAttribute)edgeY UI_APPEARANCE_SELECTOR;
- - (void)setTextAttributes:(NSDictionary<NSString*, id> *)textAttributes UI_APPEARANCE_SELECTOR;
- @end
|