123456789101112131415161718192021222324252627 |
- //
- // UILabel+AlertActionFont.m
- // RunTest
- //
- // Created by weclouds on 2019/12/29.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- #import "UILabel+AlertActionFont.h"
- @implementation UILabel (AlertActionFont)
- - (void)setAppearanceFont:(UIFont *)appearanceFont
- {
- if(appearanceFont)
- {
- [self setFont:appearanceFont];
- }
- }
- - (UIFont *)appearanceFont
- {
- return self.font;
- }
- @end
|