<span style="color: blue;"><span style="font-size: 16px;">
接下來我們要用JS在Appcelerator/Titanium上寫出商業級的Androd/iOS APP。
【先決條件】您須安裝Android或iOS任一SDK。
</span></span>
讓我們在iPhone與Android上各開個視窗來瞧瞧唄。
var win1 = Ti.UI.createWindow({
backgroundColor : '#f00'
});
var view1 = Ti.UI.createView({
backgroundColor : '#0f0',
width : 200,
height: 200,
borderRadius : 10,
borderColor : '#000',
borderWidth : 10
});
var label1 = Ti.UI.createLabel({
text : 'Hello Label1!'
});
view1.add(label1);
win1.add(view1);
win1.open();