标签:style color os io 问题 cti ar amp
# 改变iOS7上tableview的分割线长、颜色问题
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
[self.tableView setSeparatorColor:kGetColor(18.0, 18.0, 18.0)];
}
#去掉UITableView中的某cell条分割线
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
[cell setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 10000000)];
}
#或
if (indexPath.section == 0 && indexPath.row == 1) {
[cell setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 10000000)];}
改变iOS7上tableview的分割线长、颜色问题,布布扣,bubuko.com
标签:style color os io 问题 cti ar amp
原文地址:http://blog.csdn.net/alincexiaohao/article/details/38312753