我想为我的iPhone应用程序增加我的UITableViewStyleGrouped边框单元格的厚度

时间:2013-03-05 06:22:24

标签: ios uitableview ios6 border

我想为我的iPhone应用程序增加UITableVewStyleGrouped表的单元格边框的粗细。

http://screencast.com/t/vWf8sg9D6oA

1 个答案:

答案 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上有一些教程。