-2

JSON データを使用して Titanium SDK でビルドされたアプリを作成したいと考えています。アプリの作成に役立つ例を教えてください。

ありがとう

4

1 に答える 1

0
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);
于 2012-10-30T23:45:20.977 に答える