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

Imp*_*ity 6 objective-c uitableview ios

在我的UITableView中,我设置了这样的分隔符颜色:

- (void)viewDidLoad {
  ...
  self.tableView.separatorColor = [UIColor lightGrayColor];
  ...
}
Run Code Online (Sandbox Code Playgroud)

我像这样设置页脚的颜色:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {

  UITableViewHeaderFooterView *footerView = [[UITableViewHeaderFooterView alloc]
                                             initWithFrame:(CGRect){0, 0, 320, 1}];
  footerView.contentView.backgroundColor = [UIColor lightGrayColor];

  return footerView;
}
Run Code Online (Sandbox Code Playgroud)

但是,页脚视图的颜色总是比分隔符的颜色更暗,如下所示:

在此输入图像描述

如何让它们成为完全相同的颜色?谢谢.

San*_*ani 23

从iOS 6.0开始,您可以使用下面提到的UITableView's委托方法来更改页脚视图背景的颜色 -

- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section 
{
    //Set the background color of the View
    view.tintColor = [UIColor blueColor];
}
Run Code Online (Sandbox Code Playgroud)