接收错误 - [UIImageView length]:无法识别的选择器发送到实例0xac3d930

时间:2014-07-10 14:31:15

标签: ios facebook image

我正在尝试使用以下代码记录图片,但每当代码到达NSLog(imView)行时,它都会给我这个错误。我试图拉一个人的个人资料照片,然后显示它。

 NSDictionary* propic = [friend objectForKey:@"picture"];
 NSDictionary* data = [propic objectForKey:@"data"];
 NSString* imgURL = [data objectForKey:@"url"];

 NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: imgURL]];
 UIImageView *imView = [[UIImageView alloc] initWithImage:[UIImage imageWithData: imageData]];
 NSLog(imView);

0 个答案:

没有答案