我正在使用Appcelerator开发一个iOS应用程序,我在顶部有一个带有搜索栏的tableview。问题是这个酒吧表现得很奇怪。它是白色的(我设置了一种颜色),但它按预期工作。我正在单个上下文环境中开发我的应用程序,并且“窗口”在第一页上就可以这么说了。
这就是搜索栏的样子:
http://i51.tinypic.com/2egd7w9.png
我的搜索栏:
// Create the search view
var search = Titanium.UI.createSearchBar({
barColor:'#aaa',
showCancel:false,
height:43,
top:14
});
我的表:
// Create a table
var table = Ti.UI.createTableView ({
search: search,
footerView: footer,
separatorStyle: 'none',
searchHidden: true,
filterAttribute: 'filter'
});
我做错了什么?