How can I parse using NSXMLParser if I need all the images,

<title>Title</title>
<description>my description is here </description>

<images>

<image>http://www.sosmoths.com/mothImages/800px-Tineola.bisselliella.7218.jpg</image>

<image>http://www.sosmoths.com/mothImages/800px-Tineola.bisselliella.mounted.jpg</image>

<image>http://www.sosmoths.com/mothImages/800px-XN_Tineola_bisselliella_1.jpg</image>

<image>http://www.sosmoths.com/mothImages/Tineola_bisselliella.JPG</image>

</images>

There are more nodes like title, description, so how to parse such xml, I am confused about image nodes, I am thinking to use NSMutableArray for this, but still not clear to do code?

link|improve this question

73% accept rate
please provide the full url – Ron Oct 1 '11 at 5:19
sosmoths.com/.xml/moths.xml – Veer Oct 1 '11 at 5:21
This is XML ROM, now what can I do, I want to use NSXMLParser, not touchXML or any else @Ron – Veer Oct 1 '11 at 5:21
feedback

3 Answers

up vote 2 down vote accepted
use this it work

-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict{
    NSLog(@"%@",elementName);
    if([elementName isEqualToString:@"moths"]){
        mytblarray=[[NSMutableArray alloc] init];
    } else if([elementName isEqualToString:@"moth"]){
        tmpdic=[[NSMutableDictionary alloc] init];
    }
    else if([elementName isEqualToString:@"images"]){
        imgArray=[[NSMutableArray alloc] init];
    }

}

-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{

    if(tmpstr!=nil && [tmpstr retainCount]>0){ [tmpstr release]; tmpstr=nil; }
    tmpstr=[[NSString alloc] initWithString:string];

}

-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName{

    if([elementName isEqualToString:@"moth"]){
        [mytblarray addObject:tmpdic];
        [tmpdic release];
    }if([elementName isEqualToString:@"images"]){
        [tmpdic setValue:imgArray forKey:elementName];
    }
    else if([elementName isEqualToString:@"image"]){
        [imgArray addObject:tmpstr];        
    }
}
link|improve this answer
Thanx Ron, I will apply tonight and upvoted and accepted the answer if it will work for me – Veer Oct 1 '11 at 5:45
I have accepted the answer, but there is one more question, there every title, I have to save the data in their respective controller, so how can I save data of 4 moth in four different objects – Veer Oct 2 '11 at 9:11
if u want u save data of four month in different objective in dictionary u generate dynamic key according to old key like images after that current time – Ron Oct 3 '11 at 4:13
I couldn't get your idea :-( – Veer Oct 3 '11 at 8:32
why u want like this – Ron Oct 3 '11 at 8:40
feedback
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName
                                  namespaceURI:(NSString *)namespaceURI
                                 qualifiedName:(NSString *)qName

{

if ([elementName isEqualToString:"<image>"])
        {
            [imagearray addObject:imageurl];

        }

}

Before this you need to find the element name is and then do above code.This may help you.

link|improve this answer
but where to init the image array? – Veer Oct 1 '11 at 5:37
You may take it in initWithData: method.Means when you pass your request. – Rama Rao Oct 1 '11 at 6:28
feedback
  1. take dictionary in initWithData: methode
  2. Take values as key like title, description
  3. in didStartElement method, in images tag alloc image_array
  4. in didEndElement method, in image tag add your data(here your image link) to image_array
  5. now in didEndElement method, in images tag add that array to your main dictionary as key images

that's all.....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.