これを取得するJSONリクエストがあります:
bills = (
{
id = 1;
name = "Cursus Nibh Venenatis";
value = "875.24";
},
{
id = 2;
name = "Elit Fusce";
value = "254.02";
}
);
そのためのNSDictionaryを作成しています。
JSONKitを使用していますが、UITableViewにこの値を入力する方法を知りたいですか?助けてくれてありがとう!
編集
NSLog(@"my dictionary = %@", resultsDictionary);
my dictionary = {
bills = (
{
id = 1;
name = "Cursus Nibh Venenatis";
value = "875.24";
},
{
id = 2;
name = "Elit Fusce";
value = "254.02";
}
);
}