最后提交
This commit is contained in:
@@ -237,7 +237,11 @@
|
||||
|
||||
|
||||
self.walletBgView = [[UIView alloc] initWithFrame:CGRectMake(self.topBgView.left, self.cycleScrollView.bottom+12, self.topBgView.width, 108)];
|
||||
self.walletBgView.backgroundColor = RGB16(0x231F2C);
|
||||
if (QXConfig.shared.model) {
|
||||
self.walletBgView.backgroundColor = RGB16(0x600D00);
|
||||
}else{
|
||||
self.walletBgView.backgroundColor = RGB16(0x231F2C);
|
||||
}
|
||||
[self.walletBgView addRoundedCornersWithRadius:8];
|
||||
[self addSubview:self.walletBgView];
|
||||
|
||||
|
||||
@@ -39,7 +39,11 @@
|
||||
}
|
||||
-(void)createViews{
|
||||
self.bgView = [[UIView alloc] init];
|
||||
self.bgView.backgroundColor = RGB16(0x231F2C);
|
||||
if (QXConfig.shared.model) {
|
||||
self.bgView.backgroundColor = RGB16(0x600D00);
|
||||
}else{
|
||||
self.bgView.backgroundColor = RGB16(0x231F2C);
|
||||
}
|
||||
[self.bgView addRoundedCornersWithRadius:10];
|
||||
[self.contentView addSubview:self.bgView];
|
||||
[self.bgView mas_makeConstraints:^(MASConstraintMaker *make) {
|
||||
|
||||
Reference in New Issue
Block a user