如何将xml解析图像数据发送到ImageView.image

时间:2015-06-01 04:47:00

标签: ios objective-c xml

我正在进行解析,我从 XML 获取了像this这样的图像数据 然后我通过使用共享委托将其发送到详细视图控制器。

AppDelegate *sharedDelegate=(AppDelegate*)[[UIApplication sharedApplication]delegate];
imageview.image=[UIImage imageNamed:sharedDelegate.imagObj];

我在sharedDelegate.image中获得了数据,但Imageview.image只获得了null值。

请帮帮我。

1 个答案:

答案 0 :(得分:0)

如果您要获取字符串,请使用以下代码:

AppDelegate *sharedDelegate=(AppDelegate*)[[UIApplication sharedApplication]delegate];
NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: [NSString stringWithFormat:@"%@",sharedDelegate.imagObj]]];
imageview.image = [UIImage imageWithData: imageData]];