2012-09-21 94 views
0

我使用下面的函數:圖像看起來失真iPhone上

var b4 = Titanium.UI.createButton({ 
title : '', 
top : 360, 
width : 190, 
height : 20, 
backgroundImage : '../images/signup.gif', 
}); 

win.add(b4); 

當我部署到iphone,按鈕上方看起來會有些失真(僅註冊按鈕顯示的下部)。現在確定該怎麼辦... 我該如何解決這個問題?

回答

0

你可能想使你的按鈕作爲顯示的模式,即

var button = Ti.UI.createView({ 
    top: 360, 
    width: 190, 
    height: 20, 
    backgroundColor: '#777777' 
}) 


button.add(Ti.UI.createImageView({ 
    top: 10, 
    bottom: 10, 
    image: '../images/signup.gif' 
})) 

win.add(button);