-8

次のレイアウトのオブジェクトの JSON 配列があります。

[{
    "user_privacy": "Private",
    "latitude": "53.34885596487662",
    "longitude": "-6.255970895290375",
    "address": "",
    "quick_ezpoint": false,
    "tags": "test",
    "owner": true,
    "value": "TQJ539"
},{
    "user_privacy": "Private",
    "latitude": "53.34885596487662",
    "longitude": "-6.255970895290375",
    "address": "",
    "quick_ezpoint": false,
    "tags": "test",
    "owner": true,
    "value": "TQJ539"
}]

私はこのコードを試しましたが、うまくいきません:

NSArray *ezpoints = [JSON valueListAttributes];
                for (NSArray *ezpoint in ezpoints) {
                    NSLog(@"%@",[ezpoint description]);
                }
4

1 に答える 1