我是iOS开发的初学者,我尝试制作电子目录。 我使用自定义splitView来显示产品列表,而在masterView中我的tableView的分隔符没有正确显示...
我已经尝试通过将分隔符插入设置为0来解决问题,但它不起作用。
你知道我应该做什么吗?
[编辑]
目前我使用将CALayer放在单元格底部的解决方案(下面的代码写入“CellForRowAtIndexPath”
CALayer *produitsCategorieCellBottomBorder = [CALayer layer];
produitsCategorieCellBottomBorder.frame = CGRectMake(15, cell.frame.size.height-1, 320, 1.0f);
produitsCategorieCellBottomBorder.backgroundColor = [UIColor colorWithRed:198/255.0 green:197/255.0 blue:204/255.0 alpha:1.0].CGColor;
[cell.layer addSublayer:produitsCategorieCellBottomBorder];
如果您找到更好的解决方案,请告诉我请:)
[编辑]
答案 0 :(得分:0)
您要添加到单元格的自定义视图与分隔符重叠。检查其框架,并将标签背景设置为[UIColor clearColor]
。