大鹅UI改版送礼物横幅文字的颜色

This commit is contained in:
fengshuo
2021-12-25 18:59:06 +08:00
parent db7e29a590
commit b266e9a970
7 changed files with 28 additions and 8 deletions

View File

@@ -120,7 +120,7 @@
_coinLabel = [[UILabel alloc] init];
_coinLabel.text = @"我的钻石";
_coinLabel.font = [UIFont systemFontOfSize:13];
_coinLabel.textColor = [ThemeColor mainTextColor];
_coinLabel.textColor = [UIColor whiteColor];
}
return _coinLabel;
}

View File

@@ -59,7 +59,7 @@
- (UIButton *)backButton {
if (!_backButton) {
_backButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_backButton setImage:[UIImage imageNamed:@"common_nav_back"] forState:UIControlStateNormal];
[_backButton setImage:[UIImage imageNamed:@"home_search_white_back"] forState:UIControlStateNormal];
_backButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
[_backButton addTarget:self action:@selector(backButtonAction:) forControlEvents:UIControlEventTouchUpInside];
[_backButton setEnlargeEdgeWithTop:10 right:10 bottom:10 left:10];
@@ -74,7 +74,7 @@
_titleLabel.textAlignment = NSTextAlignmentCenter;
_titleLabel.font = [UIFont systemFontOfSize:15];
_titleLabel.text = @"账户";
_titleLabel.textColor = [ThemeColor mainTextColor];
_titleLabel.textColor = [UIColor whiteColor];
}
return _titleLabel;
}