I am going to use NSXMLElement
in my project, so I tried to
#import <Foundation/NSXMLDocument.h>
but it gives an error: "No such file or directory." How can I include this?
I am going to use NSXMLElement
in my project, so I tried to
#import <Foundation/NSXMLDocument.h>
but it gives an error: "No such file or directory." How can I include this?
You should include Foundation/Foundation.h which pulls in everything you need. If you created the project not from one of Apple's Objective-C templates, you'll need to make sure that the Foundation framework is referenced by it.