我想用 JSON 数据制作一个基于 Titanium SDK 的应用程序。请为我提供一个可以帮助我构建应用程序的示例。
谢谢
var remoteJSON = {
"text" : "look at me I put json on the iPads"
}
function doStuffWithData(data) {
var label = Ti.UI.createLabel({
text : data.text,
font : {
fontSize : 24
}
});
win.add(label);
};
var win = Ti.UI.createWindow();
win.open();
//do a network request, get some JSON data back, see
//http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.Network.HTTPClient
//also, check out https://github.com/appcelerator/KitchenSink
doStuffWithData(remoteJSON);