0

表格视图中的分隔符未显示,例如。

Ti.UI.backgroundColor = 'white';
var win = Ti.UI.createWindow();

var tableData = [ {title: 'Apples'}, {title: 'Bananas'}, {title: 'Carrots'}, {title: 'Potatoes'} ];

var table = Ti.UI.createTableView({
data: tableData
});
win.add(table);
win.open();

我也试过

table.separatorStyle = Ti.UI.iPhone.TableViewSeparatorStyle.SINGLE_LINE; 
table.separatorColor = "#000";

还尝试运行厨房水槽,分隔符根本没有显示

有任何想法吗?

4

1 回答 1

1

我建议使用 ListViews 而不是 TableViews:https ://docs.appcelerator.com/platform/latest/#!/guide/ListViews

它们在大型列表上提供了巨大的性能提升。此外,在使用 ListItems 模板时,您可以更好地处理设计。

于 2016-01-22T07:52:11.370 回答