Commit b511679044d90ca23927518d2977c5991456487e
1 parent
9847ff13
no message
Showing
1 changed file
with
2 additions
and
1 deletions
CNLiveSettingModule/Classes/Controller/CNLiveSettingController.m
| ... | ... | @@ -25,6 +25,7 @@ |
| 25 | 25 | #import "CNLiveAboutUsController.h"//关于我们 |
| 26 | 26 | #import "CNLiveFontSettingController.h"//设置字体大小 |
| 27 | 27 | #import "CNLiveBackgroundImageController.h" |
| 28 | +#import "CNLiveBaseKit.h" | |
| 28 | 29 | |
| 29 | 30 | @interface CNLiveSettingController () |
| 30 | 31 | <UITableViewDelegate, UITableViewDataSource, CNLiveSettingNavigationBarDelegate> |
| ... | ... | @@ -302,7 +303,7 @@ static const NSInteger timeValue = 1.5; |
| 302 | 303 | _logout = [UIButton buttonWithType:UIButtonTypeCustom]; |
| 303 | 304 | _logout.frame = CGRectMake(0, SCREEN_HEIGHT-SafeAreaInsetsConstantForDeviceWithNotch.bottom-50, SCREEN_WIDTH, 50); |
| 304 | 305 | _logout.backgroundColor = [UIColor whiteColor]; |
| 305 | - _logout.titleLabel.font = [UIFont boldSystemFontOfSize:17]; | |
| 306 | + _logout.titleLabel.font = UIFontBoldCNMake(17.0); | |
| 306 | 307 | [_logout setTitleColor:[UIColor redColor] forState:UIControlStateNormal]; |
| 307 | 308 | [_logout setTitle:@"退出登录" forState:UIControlStateNormal]; |
| 308 | 309 | _logout.adjustsImageWhenHighlighted = NO; | ... | ... |