我有一个新手问题:我在 Titanium for iPhone 中创建的一个简单按钮在单击时拒绝更改颜色。最初我为这个功能使用了一个按钮;由于它不起作用,我改为视图,但都不起作用。这是它的设置方式:
var quifButton = Ti.UI.createView({ // tried this with createButton, as well
top: 44, left: 5, width: 310, height: 42,
backgroundColor: '#333',
backgroundSelectedColor: '#fff',
backgroundFocusedColor: '#fff',
touchEnabled: true,
borderColor: BOR_DK, borderWidth: 2, borderRadius: 5 });
当我在 iPhone 模拟器中单击 Button / View 时,什么也没有发生。任何想法为什么这不起作用以及如何使它起作用?