我已经成功地从远程 Web 服务器解析了 XML 文件。我的 XML 包含几个带有图像链接的元素。我想在不同的 UIImageView 上分配图像,因为我尝试了以下方式,但由于获取元素的所有图像而失败。因此,我无法为特定的 UIImageView 分配特定的图像。任何人都可以建议我如何做到这一点,
我的XML
<?xml version="1.0" encoding="UTF-8"?>
<Products>
<Main id="0">
<name>Main</name>
<mainimage id="1">http://sample.com/images/first.png</mainimage>
<mainimage id="2">http://sample.com/images/second.png</mainimage>
</Main>
<Category id="1">
<name>category1</name>
<categoryimage id="1">http://sample.com/images/img1.png</categoryimage>
</Category>
<Category id="2">
<name>category2</name>
<categoryimage id="2">http://sample.com/images/img2.png</categoryimage>
<subcategoryimage id="1">http://sample.com/images/img5.png</subcategoryimage>
<subcategoryimage id="2">http://sample.com/images/img4.png</subcategoryimage>
</Category>
</Products>
XML 解析
- (BOOL)loadXMLByURL:(NSURL *)url
{
self.parser = [[NSXMLParser alloc] initWithContentsOfURL:url];
self.parser.delegate = self;
return [self.parser parse];
}
- (void)parserDidStartDocument:(NSXMLParser *)parser
{
self.products = [[NSMutableArray alloc] init];
}
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{
if([elementName isEqualToString:@"mainimage"]){
self.currentProduct = [[EGSProduct alloc] init];
self.currentProduct.imageIdentifier = attributeDict[@"id"];
}
if ([elementName isEqualToString:@"Category"]){
self.currentProduct = [[EGSProduct alloc] init];
self.currentProduct.imageIdentifier = attributeDict[@"id"];
}
else if ([elementName isEqualToString:@"subcategoryimage"]){
self.currentSubProduct = [[EGSProduct alloc] init];
self.currentSubProduct.imageIdentifier = attributeDict[@"id"];
if (self.currentProduct.subProducts == nil){
self.currentProduct.subProducts = [NSMutableArray array];
}
self.currentSubProduct.imageIdentifier = attributeDict[@"id"];
self.currentElementContent = [[NSMutableString alloc] init];
}
else if ([elementName isEqualToString:@"name"] || [elementName isEqualToString:@"categoryimage"]){
self.currentElementContent = [[NSMutableString alloc] init];
}
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName{
if ([elementName isEqualToString:@"mainimage"]){
self.currentProduct.name = self.currentElementContent;
self.currentElementContent = nil;
}
if ([elementName isEqualToString:@"name"]){
self.currentProduct.name = self.currentElementContent;
self.currentElementContent = nil;
}
else if ([elementName isEqualToString:@"categoryimage"]){
self.currentProduct.imageUrlString = [self.currentElementContent stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
self.currentElementContent = nil;
}
else if ([elementName isEqualToString:@"subcategoryimage"]){
self.currentSubProduct.imageUrlString = self.currentElementContent;
self.currentElementContent = nil;
[self.currentProduct.subProducts addObject:self.currentSubProduct];
self.currentSubProduct = nil;
}
else if ([elementName isEqualToString:@"Category"]){
[self.products addObject:self.currentProduct];
self.currentProduct = nil;
}
}
在视图控制器中,当我厌倦了获取Main
元素的图像时,我只得到Category
了 XML 的元素。
视图控制器
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.sample.com/Category.xml"];
EGSParser *parser = [[EGSParser alloc] init];
if ([parser loadXMLByURL:url])
self.xmlProductsResults = parser.products;
EGSProduct *prod = (EGSProduct *)[self.xmlProductsResults objectAtIndex:0];
NSData *mydata = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:prod.imageUrlString]];
self.firstImage.image = [UIImage imageWithData:mydata];
}