ios – 页脚视图的颜色总是比UITableView分隔符的颜色更暗

前端之家收集整理的这篇文章主要介绍了ios – 页脚视图的颜色总是比UITableView分隔符的颜色更暗前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的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];
}
原文链接:/iOS/331203.html

猜你在找的iOS相关文章