iPhone アプリケーションをビルドしようとすると、次のエラーが表示されます: 解析の問題 - 予想される識別子
私のコード:
- (void)fetchedData:(NSData *)responseData
{
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData
options:kNilOptions error:&error];
self.titleLabel.text = [json objectForKey:@"name"];
self.aboutText.text = [json objectForKey:@"about"];
NSURL *url = [[NSURL URLWithString: [json objectForKey:@"picture"]];
dispatch_queue_t queue = dispatch_get_global_queue
(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
NSData *data = [NSData dataWithContentsOfURL: url];
self.profileImage.image = [UIImage imageWithData: data];
});
}
次の行にエラーが表示されます。
NSURL *url = [[NSURL URLWithString: [json objectForKey:@"picture"]];
誰かが何が悪いのか説明できますか?