Skip to content

Commit 56d0a16

Browse files
committed
颜色优化~
1 parent d265351 commit 56d0a16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Coding_iOS/Views/TableListView/ProjectListView.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ - (void)sendRequest{
243243
dispatch_async(dispatch_get_main_queue(), ^{
244244
NSString *headerTitle=[weakSelf getSectionHeaderName];
245245
if (headerTitle.length>0) {
246-
weakSelf.statusView=[weakSelf.myTableView getHeaderViewWithStr:headerTitle color:[UIColor clearColor] leftNoticeColor:[UIColor colorWithHexString:@"3BBD79"] andBlock:nil];
246+
weakSelf.statusView=[weakSelf.myTableView getHeaderViewWithStr:headerTitle color:kColorTableBG leftNoticeColor:[UIColor colorWithHexString:@"3BBD79"] andBlock:nil];
247247
[weakSelf addSubview:weakSelf.statusView];
248248
}
249249
});
@@ -291,7 +291,7 @@ - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger
291291
if (headerTitle.length==0) {
292292
return nil;
293293
}
294-
UIView *headerView=[tableView getHeaderViewWithStr:headerTitle color:[UIColor clearColor] leftNoticeColor:[UIColor colorWithHexString:@"3BBD79"] andBlock:nil];
294+
UIView *headerView=[tableView getHeaderViewWithStr:headerTitle color:kColorTableBG leftNoticeColor:[UIColor colorWithHexString:@"3BBD79"] andBlock:nil];
295295
return headerView;
296296
}else{
297297
return nil;

0 commit comments

Comments
 (0)