iOS_개발
-
UITableHeaderFooterView backgroundColor 변경법개발 삽질기/iOS 2020. 1. 2. 21:52
오늘 UITableViewHeaderFooterView의 backgroundColor가 기본색인 회색에서 변경이 되지 않아서 애먹었다.. 결론은 UITableViewHeaderFooterView의 backgroundView를 아무것도 없는 빈 뷰라도 설정해주면 된다. backgroundView가 없을 시, 프레임워크에서 UITableViewHeaderFooterView의 생명주기 중 setFrame 즈음해서 _UITableViewHeaderFooterViewBackground 라는 또다른 뷰를 UITableViewHeaderFooterView와 UITableViewHeaderFooterView.contentView 사이에 집어넣는다. 문제는 이 뷰의 backgroundColor가 회색을 띠고 있고, UI..