我正在进行解析,我从 XML 获取了像this这样的图像数据 然后我通过使用共享委托将其发送到详细视图控制器。
AppDelegate *sharedDelegate=(AppDelegate*)[[UIApplication sharedApplication]delegate];
imageview.image=[UIImage imageNamed:sharedDelegate.imagObj];
我在sharedDelegate.image
中获得了数据,但Imageview.image
只获得了null
值。
请帮帮我。
答案 0 :(得分:0)
如果您要获取字符串,请使用以下代码:
AppDelegate *sharedDelegate=(AppDelegate*)[[UIApplication sharedApplication]delegate];
NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: [NSString stringWithFormat:@"%@",sharedDelegate.imagObj]]];
imageview.image = [UIImage imageWithData: imageData]];