NSXMLParser Simple Example
As part of exploring the NSXMLParser I created the following really simple code. main.m int main(int argc, const char * argv[]) { @autoreleasepool { NSLog(@”Main Started”); NSError *error = nil; // Load the file and check the result NSData *data = [NSData dataWithContentsOfFile:@”/Users/Tim/Documents/MusicXml/Small.xml” options:NSDataReadingUncached error:&error]; if(error) { NSLog(@”Error %@”, error); return 1; } // Create … Read more