[IOS / Object-C] - 테이블 뷰 세션칸 배경 색상바꾸기 / viewForHeaderInSection
IOS ( Object-C ) 2014. 12. 18. 14:47반응형
- (UIView *) tableView : (UITableView *) tableView viewForHeaderInSection : (NSInteger) section {
UIView *viewSection = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)];
[viewSection setBackgroundColor:[UIColor red]];
return viewSection;
}
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - App Transport Security has blocked a cleartext HTTP 대응 방안 (0) | 2016.09.19 |
---|---|
[IOS / Object-C] - NSMutableArray 중복값 제거 (0) | 2015.01.28 |
[IOS / Object-C] - UITextField 터치시 키보드 늦게 올라올때 대처법 / Keyboard slow (0) | 2014.12.15 |
[IOS / Object-C] - IOS 문자열 치환 Replace (0) | 2014.12.10 |
[IOS / Object-C] - IOS 7 이상 상단 상태바 배경색상 지정 (0) | 2014.12.09 |