I had parsed the XML file from remote web server successfully. My XML contains several elements with image links in it. i want to assign the images on different UIImageView's for that i tried in the below way but got failed as am getting all the images of the elements. Due to this i can't assign a particular image for a particular UIImageView. Can anyone suggest me how to do this,
MyXML
<?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 Parsing
- (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;
}
}
In View Controller when i tired to get the images of Main
element am getting only the Category
Element of the XML.
View Controller
[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];
}