對iOS開發和objective-c同時也是一個相當新的東西。我有以下方法:無鑰匙訪問NSMutableDictionary值?
-(NSMutableArray *)fetchDatabaseJSON{
NSURL *url = [NSURL URLWithString:@"http://www.ios.com/ios/responseScript.php"];
NSError *error = nil;
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:NULL error:&error];
//jsonArray = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
//NSLog(@"Array: %@",[jsonArray objectAtIndex:0]);
jsonDictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
NSLog(@"Dictionary: %@", jsonDictionary);
return jsonArray;
}
現在的NSLog示出了該:
2013年2月3日19:15:37.081 TestConnection [24510:C07]字典:( Bannana, 蘋果 SomeCheese)
據我所知,無論是在字典裏面沒有鍵值。怎麼會這樣?我該如何解決它?我希望能夠擁有鍵盤來簡化字典上的操作。
問候,