appcelerator studio で簡単なアプリを作成しています。したがって、ビューに TableView を表示したいと思います。
これは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;
しかし、コードを実行しようとすると、テーブルのヘッダー タイトルが表示されません