iPhone アプリ #18
JSON。
NSData *data = [@"{\"Hello\": \"World\"}" dataUsingEncoding:NSUTF8StringEncoding]; NSDictionary *jsonObject = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil]; NSString* str = [jsonObject objectForKey:@"Hello"]; myLabel.text = [[NSString alloc] initWithFormat:@"Hello=%@", str];