0

我在 Titanium Appcelerator 中创建了一个应用程序。该应用程序运行良好,直到 iPhone 5 和 ios 6 出现。问题在于按钮栏中的按钮比它们应该的大。它们与条重叠。

这是一个图像以及按钮的代码。有没有人遇到过这个问题?

http://postimage.org/image/thlu3i8pf/

    var statusButton = Titanium.UI.createButtonBar({
    labels:['Open', 'Closed'],
    backgroundColor:'#336699'
    });
4

2 回答 2

2

确保您使用的是 Titanium SDK 2.1.4 或更新版本——2.1.3 和 2.1.4 包含许多针对 iOS 6 和 iPhone 5 的修复程序。

于 2012-12-06T22:30:43.360 回答
0

你需要增加高度。

var statusButton = Titanium.UI.createButtonBar({
labels:['Open', 'Closed'],
backgroundColor:'#336699',
height: 40
});
于 2012-12-06T21:52:35.697 回答