Skip to content

Commit 6972f78

Browse files
committed
改来改去改来改去
1 parent b8b248d commit 6972f78

File tree

12 files changed

+14
-13
lines changed

12 files changed

+14
-13
lines changed

Coding_iOS/.DS_Store

0 Bytes
Binary file not shown.

Coding_iOS/Controllers/RootControllers/BaseNavigationController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ - (void)viewWillAppear:(BOOL)animated{
2525
//添新
2626
if (!_navLineV) {
2727
_navLineV = [[UIView alloc]initWithFrame:CGRectMake(0, 44, kScreen_Width, 1.0/ [UIScreen mainScreen].scale)];
28-
_navLineV.backgroundColor = kColorDDD;
28+
_navLineV.backgroundColor = kColorCCC;
2929
[self.navigationBar addSubview:_navLineV];
3030
}
3131
}

Coding_iOS/Controllers/RootControllers/RootTabViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ - (void)customizeTabBarForController {
116116
[item setTitle:[tabBarItemTitles objectAtIndex:index]];
117117
index++;
118118
}
119-
[self.tabBar addLineUp:YES andDown:NO];
119+
[self.tabBar addLineUp:YES andDown:NO andColor:kColorCCC];
120120
}
121121

122122
#pragma mark RDVTabBarControllerDelegate

Coding_iOS/Util/Manager/SendRewardManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ - (instancetype)init
109109
_passwordF.textColor = kColor222;
110110
_passwordF.secureTextEntry = YES;
111111
_passwordF.textAlignment = NSTextAlignmentCenter;
112-
[_passwordF doBorderWidth:1.0 color:[UIColor colorWithHexString:@"0xCCCCCC"] cornerRadius:2.0];
112+
[_passwordF doBorderWidth:1.0 color:kColorCCC cornerRadius:2.0];
113113
_passwordF.placeholder = @" 请输入密码";
114114
_passwordF.alpha = 0;
115115
_bottomL.font = [UIFont systemFontOfSize:12];

Coding_iOS/Vendor/AGEmojiKeyboard/AGEmojiKeyBoardView.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ - (void)setRecentEmojis:(NSMutableArray *)recentEmojis {
109109
- (instancetype)initWithFrame:(CGRect)frame dataSource:(id<AGEmojiKeyboardViewDataSource>)dataSource showBigEmotion:(BOOL)showBigEmotion{
110110
self = [super initWithFrame:frame];
111111
if (self) {
112-
self.backgroundColor = kColorTableSectionBg;
112+
self.backgroundColor = kColorNavBG;
113113
// initialize category
114114
_dataSource = dataSource;
115115
self.category = [self categoryNameAtIndex:self.defaultSelectedCategory];
@@ -453,7 +453,7 @@ - (void)setSelectedIndex:(NSInteger)selectedIndex{
453453
UIButton *tabButton = self.tabButtons[i];
454454
if (i==selectedIndex) {
455455
[tabButton setImage:self.selectedImages[i] forState:UIControlStateNormal];
456-
[tabButton setBackgroundColor:kColorTableSectionBg];
456+
[tabButton setBackgroundColor:kColorNavBG];
457457
}else{
458458
[tabButton setImage:self.unSelectedImages[i] forState:UIControlStateNormal];
459459
[tabButton setBackgroundColor:[UIColor clearColor]];

Coding_iOS/Views/Cell/EditLabelHeadCell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
2828
}
2929
if (!_addBtn) {
3030
_addBtn = [[UIButton alloc] initWithFrame:CGRectMake(kScreen_Width - kPaddingLeftWidth - 50, 7, 50, 30)];
31-
[_addBtn doBorderWidth:0.5 color:[UIColor colorWithHexString:@"0xCCCCCC"] cornerRadius:4];
31+
[_addBtn doBorderWidth:0.5 color:kColorCCC cornerRadius:4];
3232
[_addBtn setImage:[UIImage imageNamed:@"tag_button_add"] forState:UIControlStateNormal];
3333
_addBtn.enabled = FALSE;
3434
[self.contentView addSubview:_addBtn];

Coding_iOS/Views/Cell/Input_OnlyText_Cell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
9797
});
9898
UIView *lineV = ({
9999
UIView *view = [UIView new];
100-
view.backgroundColor = [UIColor colorWithHexString:@"0xCCCCCC"];
100+
view.backgroundColor = kColorCCC;
101101
[self.contentView addSubview:view];
102102
[view mas_makeConstraints:^(MASConstraintMaker *make) {
103103
make.left.equalTo(self.countryCodeL.mas_right).offset(8);

Coding_iOS/Views/Cell/TagColorEditCell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
2424
}
2525
if (!_randomBtn) {
2626
_randomBtn = [[UIButton alloc] initWithFrame:CGRectMake(kScreen_Width - kPaddingLeftWidth - 50, 7, 50, 30)];
27-
[_randomBtn doBorderWidth:0.5 color:[UIColor colorWithHexString:@"0xCCCCCC"] cornerRadius:4];
27+
[_randomBtn doBorderWidth:0.5 color:kColorCCC cornerRadius:4];
2828
[_randomBtn setImage:[UIImage imageNamed:@"tag_button_randomColor"] forState:UIControlStateNormal];
2929
[self.contentView addSubview:_randomBtn];
3030
}

Coding_iOS/Views/CodingBannersView.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ - (instancetype)init
3434
_ratio = 0.4;
3535
CGFloat viewHeight = _padding_top + _padding_bottom + _image_width * _ratio;
3636
[self setSize:CGSizeMake(kScreen_Width, viewHeight)];
37+
[self addLineUp:NO andDown:YES];
3738
}
3839
return self;
3940
}

Coding_iOS/Views/PopFliterMenu.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
223223
if(indexPath.row==0){
224224
[titleLab removeFromSuperview];
225225
UIView *seperatorLine=[[UIView alloc] initWithFrame:CGRectMake(20, 15, self.bounds.size.width-40, 0.5)];
226-
seperatorLine.backgroundColor=[UIColor colorWithHexString:@"0xcccccc"];
226+
seperatorLine.backgroundColor=kColorCCC;
227227
[cell.contentView addSubview:seperatorLine];
228228
cell.selectionStyle=UITableViewCellSelectionStyleNone;
229229
}else{
@@ -235,7 +235,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
235235
if(indexPath.row==0){
236236
[titleLab removeFromSuperview];
237237
UIView *seperatorLine=[[UIView alloc] initWithFrame:CGRectMake(20, 15, self.bounds.size.width-40, 0.5)];
238-
seperatorLine.backgroundColor=[UIColor colorWithHexString:@"0xcccccc"];
238+
seperatorLine.backgroundColor=kColorCCC;
239239
[cell.contentView addSubview:seperatorLine];
240240
cell.selectionStyle=UITableViewCellSelectionStyleNone;
241241
}else{

Coding_iOS/Views/ShopGoodsInfoView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ - (void)setUpContentView
101101
}];
102102

103103
DashesLineView *lineView = [[DashesLineView alloc] init];
104-
lineView.lineColor = [UIColor colorWithHexString:@"0xCCCCCC"];
104+
lineView.lineColor = kColorCCC;
105105
lineView.backgroundColor = [UIColor clearColor];
106106
[superView addSubview:lineView];
107107
[lineView mas_makeConstraints:^(MASConstraintMaker *make) {

Coding_iOS/Views/UIMessageInputView/UIMessageInputView.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ - (id)initWithFrame:(CGRect)frame
152152
self = [super initWithFrame:frame];
153153
if (self) {
154154
// Initialization code
155-
self.backgroundColor = kColorTableSectionBg;
156-
[self addLineUp:YES andDown:NO andColor:[UIColor lightGrayColor]];
155+
self.backgroundColor = kColorNavBG;
156+
[self addLineUp:YES andDown:NO andColor:kColorCCC];
157157
_viewHeightOld = CGRectGetHeight(frame);
158158
_inputState = UIMessageInputViewStateSystem;
159159
_isAlwaysShow = NO;

0 commit comments

Comments
 (0)