将UITAbleVIewCell形状更改为圆形rect

时间:2011-04-04 09:50:41

标签: iphone

如何将矩形`UITableViewCell的形状(在屏幕截图enter image description here中显示customer1)更改为圆形矩形?

4 个答案:

答案 0 :(得分:1)

你的问题不是很清楚,但屏幕截图是组表,如果想要制作这样的单元格,那么你可以使用组表。

答案 1 :(得分:0)

那是一个细胞?使用自定义单元格:)查看它here

答案 2 :(得分:0)

您需要使用组表。您可以在Interface Builder中设置组表样式,或者以编程方式创建具有该样式的表:

- (id)initWithStyle:(UITableViewStyle)style {
  // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
  if (self = [super initWithStyle:UITableViewStyleGrouped]) {
  }
  return self;
}

答案 3 :(得分:0)