TableView 中的多行标签
如何在我的表格视图中添加多行标签,例如此屏幕中的标签(多任务手势下方的标签): http://cl.ly/6g0B
How can I add a multi-line label in my tableview like the one in this screen (the label below multitasking gestures):
http://cl.ly/6g0B
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要对 tableview 进行分组(至少在针对 iOS 设备时)。然后,您创建一个表视图部分来包含您的行,并且您的多行标签将通过其 headerView 属性添加到该部分。
在此处查看 TableViewSection 视图的文档: http://developer .appcelerator.com/apidoc/mobile/latest/Titanium.UI.TableViewSection-object
一个简短的示例 - 未经测试抱歉,我目前没有 Mac,但原则是合理的。您创建一个标题视图,创建一个部分,设置部分标题视图,向该部分添加一些单元格,并为您的表提供一个部分数组:
需要注意的重要一点是,您只需要一个表 - 在示例中您给出的,行被分组为部分,其中一些具有标题。
You need to make your tableview grouped (when targetting an iOS device, at least). Then, you create a table view section to contain your rows, and your multi-line label is added to the section through its headerView property.
Check out the documentation for the TableViewSection view here: http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.TableViewSection-object
A brief example - it's untested sorry, I don't have a Mac around at the moment, but the principle is sound. You create a your header view, create a section, set the section header view, add some cells to the section, and give your table an array of sections:
The important thing to note is that you only need a single table - in the example you gave, rows are instead grouped into sections, some of which have headers.
这实际上是通过创建一个
headerView
来完成的(至少在 Titanium 中)。您可以向视图添加更多
标签
,并设置高度
进行相应调整。您还需要使用data
填充您的headerSection
。That's actually done (in Titanium at least) by creating a
headerView
.You could add more
labels
to the view and set theheight
to adjust accordingly. You will also need to populate yourheaderSection
withdata
.