7

NSXMLParser has three types of init.

-> init

-> initWith Data

-> initWithContents of URL


=> But my xml file is stored at Application's Document directory, so how to parse a file which is stored at "Doc Dir"

Thanks in advance.

Alex Reynolds
  • 95,983
  • 54
  • 240
  • 345
sagarkothari
  • 24,520
  • 50
  • 165
  • 235

1 Answers1

11

nsdata can be initialize with the contents of a file. Use the initWithContentsOfFile instance method with NSDAta and supply that to nsxmlparser's initWithData method:

NSString * filePath = [[NSBundle mainBundle] pathForResource:@"someFile"
                                                      ofType:@"xml"];
NSData * fileData = [NSData dataWithContentsOfFile:filePath];
NSXMLParser * parser = [NSXMLParser initWithData:fileData];
ennuikiller
  • 46,381
  • 14
  • 112
  • 137