【发布时间】:2013-09-30 16:55:34
【问题描述】:
如何在不使用viewForHeaderInSection 创建整个表头视图的情况下更改iOS 5 上表头的文本颜色?
【问题讨论】:
标签: uitableview ios5
如何在不使用viewForHeaderInSection 创建整个表头视图的情况下更改iOS 5 上表头的文本颜色?
【问题讨论】:
标签: uitableview ios5
添加viewDidLoad:
[[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setTextColor:[UIColor whiteColor]];
[[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setShadowColor:[UIColor clearColor]];
【讨论】: