【发布时间】:2015-07-28 07:13:05
【问题描述】:
【问题讨论】:
标签: ios objective-c ios9
【问题讨论】:
标签: ios objective-c ios9
您可以使用在 tableView 中添加分隔符视图
UIView* separatorLineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 3)];/// change size as you need.
separatorLineView.backgroundColor = [UIColor whiteColor];// you can also put image here
[cell.contentView addSubview:separatorLineView];
然后给背景颜色以查看然后检查separatorColor。
希望对你有帮助。
【讨论】: