是的,所以我有一个新问题,我尝试用app.properties保存一个表视图后,我将另一个数据推入该tableview。下面是我如何创建表视图以及我认为我应该如何保存它。下面就是如何将数据推送到该表。
Ti.App.Properties.getString("TableData");
var customTableView = Titanium.UI.createTableView({
BackgroundColor:'White',
style: Titanium.UI.iPhone.TableViewStyle.GROUPED,
search:search,
searchHidden:false,
data:[
{title:"Toms List", value: true},
{title:"Shopping List", value: true},
{title:"Jocelyns List", value: true},
{title:"Friday List", value: true}
]
});
Ti.App.Properties.setString("TableData", customTableView);
ProductsDone.addEventListener('click', function(e){
Ti.App.Properties.setString("lastwin", 'SavedList');
ProductsNav.close();
Products.close();
SavedList.open();
SavedListNav.open();
var data = customTableView.data;
data.push({title: Products.title, value: true});
customTableView.data = data;
});