18 lines
230 B
Objective-C
18 lines
230 B
Objective-C
//
|
|
// CustomLabel.h
|
|
// HD wallpaper
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CustomLabel : UILabel
|
|
|
|
- (void)changeTextColor:(UIColor *)color;
|
|
- (void)changeFont:(UIFont *)font;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|