var row = Titanium.UI.createTableViewRow({
chatId : data.chat_id,
title: 'New Account ',
backgroundColor: '#FFFFFF',
selectedBackgroundColor : 'transparent',
selectionStyle : 'Titanium.UI.iPhone.TableViewCellSelectionStyle.NONE on createTableViewRow',
width : '100%',
height : '60'
});
$.tableview.appendRow = row;
尽管有以下文档,但似乎无法正常工作。
干杯。
答案 0 :(得分:1)
appendRow是一种方法而不是属性,所以你必须改变:
$.tableview.appendRow = row;
为:
$.tableview.appendRow(row);