无法#import
我将在我的项目中使用 NSXMLElement,因此我尝试这样做,
#import <Foundation/NSXMLDocument.h>
但它给出了错误:“没有这样的文件或目录。”我怎样才能包括这个?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
NSXMLDocument 是仅 OS X 的类
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSXMLDocument_Class/Reference/Reference.html
您无法在 iOS 中使用它。
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.
您应该包含 Foundation/Foundation.h,它会包含您需要的所有内容。如果您不是从 Apple 的 Objective-C 模板之一创建的项目,则需要确保它引用了 Foundation 框架。
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.
在 iOS 上,您可以使用 NSXMLParser 。
On iOS you can use NSXMLParser.