我有一个 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";
}
);
}