|
@@ -129,8 +129,8 @@
|
|
|
|
|
|
canclButton = [[UIButton alloc] init];
|
|
|
[canclButton setTitle:NSLocalizedString(@"other_cancel",nil) forState:UIControlStateNormal];
|
|
|
- [canclButton setTitleColor:[UIColor hwColor:@"#0A132B" alpha:1.0] forState:UIControlStateNormal];
|
|
|
- canclButton.backgroundColor = [UIColor hwColor:@"#E3E8F1" alpha:1.0];
|
|
|
+ [canclButton setTitleColor:[UIColor hwColor:@"#000000" alpha:1.0] forState:UIControlStateNormal];
|
|
|
+ canclButton.backgroundColor = [UIColor hwColor:@"#EEEEEE" alpha:1.0];
|
|
|
canclButton.layer.cornerRadius = 8;
|
|
|
canclButton.tag = 1;
|
|
|
[canclButton addTarget:self action:@selector(didClickButtonFun:) forControlEvents:UIControlEventTouchUpInside];
|
|
@@ -148,6 +148,7 @@
|
|
|
okButton.tag = 2;
|
|
|
[okButton setTitle:NSLocalizedString(@"other_comment_ok",nil) forState:UIControlStateNormal];
|
|
|
okButton.titleLabel.font = [UIFont boldSystemFontOfSize:16.0];
|
|
|
+ [okButton setTitleColor:[UIColor hwColor:@"#000000" alpha:1.0] forState:UIControlStateNormal];
|
|
|
okButton.layer.cornerRadius = 8;
|
|
|
okButton.layer.masksToBounds = YES;
|
|
|
[okButton addTarget:self action:@selector(didClickButtonFun:) forControlEvents:UIControlEventTouchUpInside];
|
|
@@ -157,7 +158,7 @@
|
|
|
CAGradientLayer* _glayer = [CAGradientLayer layer];
|
|
|
_glayer.startPoint = CGPointMake(0, 0.5);
|
|
|
_glayer.endPoint = CGPointMake(1, 0.5);
|
|
|
- _glayer.colors = @[(__bridge id)[UIColor hwColor:@"#0BDDFD" alpha:1.0].CGColor, (__bridge id)[UIColor hwColor:@"#048CFB" alpha:1.0].CGColor];
|
|
|
+ _glayer.colors = @[(__bridge id)[UIColor hwColor:@"#FFD315" alpha:1.0].CGColor, (__bridge id)[UIColor hwColor:@"#FFD315" alpha:1.0].CGColor];
|
|
|
_glayer.locations = @[@(0), @(1.0f)];
|
|
|
[okButton.layer insertSublayer:_glayer atIndex:0];
|
|
|
|