我正在建立一个Facebook应用程序。我必须在哪里展示我的朋友个人资料图片。但是当我运行我的项目时,图像并没有显示出来。我使用了像
这样的代码NSString *url = [NSString stringWithFormat:@"http://graph.facebook.com/%@/picture? type=large",friendId];
NSData *imageUrl = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:imageUrl]];
imgView.frame = CGRectMake(100.0f,100.0f,200,200);
[self.view addSubview:imgView];
但是当我在日志中打印网址时,它会显示一个网址,如果我在浏览器中使用此网址,则会在浏览器中显示图片。
为了打印URL,我使用了以下代码:
NSLog(@"%@",url);