Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to #import<Foundation/NSXMLDocument.h>

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?

like image 962
Aravindhan Avatar asked May 06 '11 08:05

Aravindhan


1 Answers

NSXMLDocument is an OS X only class

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSXMLDocument_Class/Reference/Reference.html

You cant use it in iOS.

like image 123
Warren Burton Avatar answered Sep 27 '22 23:09

Warren Burton