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);