0

I am trying to make a uitableview that kind of look like this

enter image description here

I am not sure how are they doing this? It looks like uitableview with grouped static cells but I am not sure how they inserted a divider and a uitextfield on the right hand side. Any suggestions?

4

2 回答 2

1

这是在情节提要中完成的,设计了分组表视图的“原型单元”。只需输入文本字段,根据自己的喜好定位和设置样式。

对于分隔线,您可以绘制到一个视图(这对于初学者来说有点复杂),或者只是UIView在适当的位置插入一个。根据需要设置其背景颜色并将宽度设置为 1.0。——维奥拉!

于 2012-11-24T22:31:40.130 回答
0

在 -cellForRowAtIndexPath 委托方法中,您可以将视图添加到单元格的 contentView 属性。在您的情况下,分隔符的图像,然后是适当的文本字段。

于 2012-11-24T23:03:45.793 回答