my xml data has nodes in this format . I want to suppress the prefixes, that is when i pull the element name in nsxmlparser’s delegate method it should not return as “yyy” and not as “xxx:yyy”
I tries to do this
[parser setDelegate:self];
[parser setShouldProcessNamespaces:NO];
[parser setShouldReportNamespacePrefixes:NO];
this code did not had any effect. what has to be done?
i got it . . should change the 2nd line to
YES.