微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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];
}

原文地址:https://www.jb51.cc/iOS/331203.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐