在我的UITableView中,我设置了这样的分隔符颜色:
- (void)viewDidLoad {
...
self.tableView.separatorColor = [UIColor lightGrayColor];
...
}
我像这样设置页脚的颜色:
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UITableViewheaderfooterView *footerView = [[UITableViewheaderfooterView alloc]
initWithFrame:(CGRect){0,320,1}];
footerView.contentView.backgroundColor = [UIColor lightGrayColor];
return footerView;
}
但是,页脚视图的颜色总是比分隔符的颜色更暗,如下所示:
如何让它们成为完全相同的颜色?谢谢.
解决方法
从iOS 6.0开始,您可以使用下面提到的UITableView的委托方法来更改页脚视图的背景颜色 –
- (void)tableView:(UITableView *)tableView willdisplayFooterView:(UIView *)view forSection:(NSInteger)section
{
//Set the background color of the View
view.tintColor = [UIColor blueColor];
}