File tree Expand file tree Collapse file tree
Coding_iOS/Views/TableListView Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments