[Solved] Xml to dictionary parsing using XML reader [closed]
if you are newbie and don’t know how to parse xml to dictionary… try with the below methods… in .h file add this methods #import <Foundation/Foundation.h> @interface XMLReader : NSObject { NSMutableArray *dictionaryStack; NSMutableString *textInProgress; NSError **errorPointer; } + (NSDictionary *)dictionaryForXMLData:(NSData *)data error:(NSError **)errorPointer; + (NSDictionary *)dictionaryForXMLString:(NSString *)string error:(NSError **)errorPointer; @end and in your .m … Read more