我有一个窗口,我想在该窗口的特定块中显示图像。图像是从本地 XML 文件中检索的。我解析了 XML 文件并在日志中得到了图像值,但我不知道如何将它放在那个特定的块中。粘贴下图以供参考。
箭头标记表示在此 UIImageView 中我需要获取图像。另外,我怀疑我是否需要在情节提要中提及 UIIMageView 的任何名称。建议我一个想法。
已编辑
我的解析器代码:
NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Sample.xml"];
NSData *data = [[NSData alloc] initWithContentsOfFile:path];
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData:data];
[xmlParser setDelegate:theParser]
在此之后,我使用此代码获取图像:
UIImage *image = [UIImage imageWithContentsOfFile:@"/Users/administrator/Desktop/imageApp/resources/Main_pic1.png"];
在此之后,我不知道如何继续。