我正在测试一些非常简单的代码以了解Titanium的工作原理,但是我陷入了一个看似非常简单的步骤。测试TabGroup UI元素的此示例代码,我看不到选项卡内的任何内容(标签)。 如果我在标签内动态添加标签,它们将起作用,但是如果UI元素在视图的xml文件中声明,则它们将不起作用。
参考:https://wiki.appcelerator.org/display/guides2/TabGroup
代码: app / views / index.xml
<Alloy>
<TabGroup>
<!-- Explicit Window declaration -->
<Tab id="tab1">
<Window id="win1">
<Label>Label 1</Label>
<Label>Label 2</Label>
<Label platform="ios">Label 3</Label>
<Label>Label 4</Label>
<Label>Label 5</Label>
</Window>
</Tab>
<!-- Tab included via <Require> tag -->
<Require src="tabView"/>
</TabGroup>
</Alloy>
app / views / tabView.xml
<Alloy>
<Tab title="required">
<Window title="required">
<Label>This is a required tab</Label>
</Window>
</Tab>
</Alloy>
有人暗示要解决此问题吗?