我试图配置一个深灰色的分离器颜色。为什么下面什么也不做?
self.tableView.seperatorStyle = UITableViewCellSeperatorStyleSingleLine;
self.tableView.seperatorColor = [UIColor colorWithRed: 127 green:127 blue:127 alpha:1];
返回一个完全没有分隔符的表。
一旦我使用 [ UIColor blackColor ],然后我得到分离器就好了。这是怎么回事?