1

Is there a control that can achieve the appearance that is in this image?

It looks like some special single round cornered table cell a UISlider embedded in it.

What I am wondering is it really a table cell, it seems overkill to do this. Is it possible there is something in iOS to achieve this without using an UIimage as a background.

Thanks, -Code

enter image description here

4

1 回答 1

1

看起来像一个分组表视图部分,其中有一个视图。分组表视图部分中的自定义表视图单元格看起来有一个UISlider ,其两侧都有一个 UILabel。

作为一般规则,您应该始终倾向于使用标准的内置控件,除非您真的需要自定义外观。

请参阅此处的第三张图片:http: //developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/AboutTableViewsiPhone/AboutTableViewsiPhone.html

另外:http: //developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/TableViewStyles/TableViewCharacteristics.html

从那个链接:

分组表视图

分组表视图还显示信息列表,但它将相关行分组在视觉上不同的部分中。如图 1-4 所示,每个部分都有圆角,默认情况下显示为蓝灰色背景。每个部分都可以为其页眉或页脚提供文本或图像,以为该部分提供一些上下文或摘要。分组表特别适用于显示数据层次结构中最详细的信息。它允许您将详细信息分成概念组并提供上下文信息以帮助用户快速理解它。

于 2012-09-30T18:44:22.477 回答