IOS How to parser xml with XMLReader
NSString *xmlFileContents = [NSString stringWithContentsOfFile:xmlFilePath encoding:NSUTF8StringEncoding error:nil];
NSError *parseError = nil;
NSDictionary *xmlDictionary = [XMLReader dictionaryForXMLString:xmlFileContents error:&parseError];
You can download XMLReader at :https://github.com/amarcadet/XMLReader
NSError *parseError = nil;
NSDictionary *xmlDictionary = [XMLReader dictionaryForXMLString:xmlFileContents error:&parseError];
You can download XMLReader at :https://github.com/amarcadet/XMLReader
Comments
Post a Comment