web-dev-qa-db-ja.com

JSONフィードをNSDictionaryに変換する

どこ JSON_CATEGORY_DATA_URL_STRINGは私のフィードURLで、次のように正常に返されます。

[
    {
        "group":"For Sale",
        "code":"SSSS"
    },
    {
        "group":"For Sale",
        "category":"Wanted",
        "code":"SWNT"
    }
]

次のコードからNice NSDictionary(またはNSArray)を取得できないようです。

+ (NSDictionary *)downloadJSON
{

NSDictionary *json_string;
NSString *dataURL = [NSString stringWithFormat:@"%@", JSON_CATEGORY_DATA_URL_STRING];
NSLog(@"%@",dataURL);
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:dataURL]];    
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

json_string = [[[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding]autorelease];
NSDictionary *json_dict = (NSDictionary *)json_string;
NSLog(@"json_dict\n%@",json_dict);
    NSLog(@"json_string\n%@",json_string);

return json_string;
}

私はこれに関する多くの記事を読みましたが、それを得ていません。

29
linkingarts

IOS5では、JSONのシリアル化に NSJSONSerialization を使用できます。

NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
100
lagos

文字列を辞書としてキャストして、JSONを解析することを期待することはできません。 JSON解析ライブラリを使用してその文字列を取得し、辞書に変換する必要があります。

8
Carl Veazey

このタスクを簡単にするクラスを作成しました。 iOS 5のNSJSONSerializationを使用します。 github here からクローンします。

2
OscarVGG

jsonデータを取得するメソッドを作成します。urlwithstringにURLを渡します。

-(void)fetchjsondata
{
     NSString *login= [[NSString stringWithFormat:@"your url string"]stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    NSLog(@"----%@", login);
    NSURL *url = [NSURL URLWithString:[login stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    //-- Get request and response though URL
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL:url];


    [NSURLConnection sendAsynchronousRequest:request
                                       queue:[NSOperationQueue mainQueue]
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
                               dispatch_async(dispatch_get_main_queue(), ^{
                                   if (data) {
                                       dic_property= [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
                                       NSLog(@"%@", dic_property);
                                       NSLog(@"counts=%d",[[dic_property objectForKey:@"Data"]count]);



                                   }
                                   else {
                                       NSLog(@"network error, %@", [error localizedFailureReason]);
                                   }
                               });

                           }];

}

どこでもfetchjsonmethodを呼び出します。

[NSThread detachNewThreadSelector:@selector(fetchdata)toTarget:self withObject:nil];

0
Jigar Darji