我想为我的iPhone应用程序增加UITableVewStyleGrouped
表的单元格边框的粗细。
答案 0 :(得分:4)
#import <QuartzCore/QuartzCore.h>
- (void)someAppropriateMethod
{
[self.myTableViewCell.contentView.layer setBorderColor:[UIColor redColor].CGColor];
[self.myTableViewCell.contentView.layer setBorderWidth:1.0f];
}
作为替代方案,你也可以试试这个:
您需要使用所需的边框创建整个tableviewcell。这意味着你必须创建顶部,底部和中间单元格的图片。 this link上有一些教程。