var row = Ti.UI.createTableViewRow({height:50});
var rowData = [];
row.add(PrimeSuiteUserName);
row.add(PrimeSuiteUserPassword);
Ti.API.info("HelloRow" +row);
rowData[0] = Object.property1;
rowData[1] = Object.property1;
Ti.API.info("Hello" +rowData);
当我警告我的行对象时,我得到了这个......
HelloRow[Ti.UI.TableViewRow]
如何在数组中访问我的行对象属性。
答案 0 :(得分:1)
试试这个。
// section index
var sectionIndex = 0;
// row index
var rowIndex = 0
// without label or childfield
rowtitle = yourTableView.data[sectionIndex].rows[rowIndex].title;
Ti.API.info("HelloRow " +rowtitle);
// child index
var childIndex = 0;
// with label or childfield
var text = yourTableView.data[sectionIndex].rows[rowIndex].children[childIndex].text;
Ti.API.info("HelloRow " +text);