如何在iOS 5上更改表头的文本颜色?

时间:2013-09-30 16:55:35

标签: uitableview ios5

如何在不使用viewForHeaderInSection创建整个标题视图的情况下更改iOS 5上表格标题的文字颜色?

1 个答案:

答案 0 :(得分:1)

添加viewDidLoad

    [[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setTextColor:[UIColor whiteColor]];
    [[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setShadowColor:[UIColor clearColor]];