私はiOS初心者ですが、コーディングに問題があります。ASIHTTPRequestを送信することにより:
NSURL *url = [NSURL URLWithString:@"http://search.twitter.com/search.json?geocode=37.781157,-122.398720,25km"];
私は次のようなデータを受け取ります:
{
"created_at" = "Fri, 25 Jan 2013 17:48:29 +0000";
"from_user" = "ZacHWallS_SBI";
"from_user_id" = 252712138;
"from_user_id_str" = 252712138;
"from_user_name" = "ZACH WALLS";
geo = "<null>";
id = 294864332490162176;
"id_str" = 294864332490162176;
"in_reply_to_status_id" = 294861687004225537;
"in_reply_to_status_id_str" = 294861687004225537;
"iso_language_code" = en;
location = "BAY AREA CALIFORNIA";
metadata = {
"result_type" = recent;
};
"profile_image_url" = "http://a0.twimg.com/profile_images/3029389178/e3567459d147bc5d0a10f3c797b477aa_normal.png";
"profile_image_url_https" = "https://si0.twimg.com/profile_images/3029389178/e3567459d147bc5d0a10f3c797b477aa_normal.png";
source = "<a href="http://twitter.com/#!/download/ipad">Twitter for iPad</a>";
text = "@LilTioSBi yee ima slide through prolly";
"to_user" = LilTioSBi;
"to_user_id" = 35629694;
"to_user_id_str" = 35629694;
"to_user_name" = "Nevin Tio";
},
次に私はこれを行います:
-(void) requestFinished: (ASIHTTPRequest *) request {
NSString *theJSON = [request responseString];
SBJsonParser *parser = [[SBJsonParser alloc] init];
NSMutableArray *jsonDictionary = [parser objectWithString:theJSON];
//NSLog(@"\n\n%@", jsonDictionary);
NSMutableArray *userName = [userinfo objectForKey:@"from_user"];
NSLog(@"\n\n\n%@",userName);
「from_user」をキャプチャする必要があります。次に実行すると、コンパイラは次のように言います。[__NSArrayM objectForKey:]:認識されないセレクタがインスタンス0x755bbc0に送信されました...どのように正しく実行しますか?