0
我正在appcelerator studio中構建一個簡單的應用程序。 所以我想在我的視圖中顯示一個TableView。如何在mu TableView中插入headerTitle
這是socialHistory.xml
<Alloy>
<View class="container">
<TableView id="table">
<TableViewSection id="table" >
<TableViewRow title="Apple"/>
<TableViewRow title="Bananas"/>
</TableViewSection>
</TableView>
</View>
</Alloy>
這是socialHistory.js
var args = $.args;
//header table
var tableData = [
{title: "Pippo"},
{title: "Pluto"},
{title: "Paperino"},
{title: "Balto"}
];
$.table.headerTitle=tableData;
,但如果我嘗試執行我的代碼,我不能看到標題標題我的表格