NSLog导入和库
我不敢相信我在找到这个时遇到了多少麻烦:
我想使用 NSLog()
我必须 #import
以及我要链接到哪个库?
提前致谢,
杰伊
I can't believe how much trouble I am having finding this:
I want to use NSLog()
what do I have to #import
and what library do I link to?
thanks in advance,
Jay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
转到 http://developer.apple.com 并在搜索框中键入 NSLog()。这将带您进入记录这一点的基金会职能。
因此,您正在寻找的
#import
是:或者,如果您使用的是 Xcode 5 并且打开了模块支持:
Go to http://developer.apple.com and in the search box type NSLog(). This takes you to the Foundation functions which documents this.
So the
#import
you are looking for is:or, if you are on Xcode 5 and have module support turned on:
NSLog
是 基础框架。NSLog
is apart of the Foundation framework.就像其余的
NS
类和函数一样,如果您有标准的构建设置,则不需要#import
任何内容,以便隐式导入基础类。Just like the rest of the
NS
classes and functions, you do not need to#import
anything if you have the standard build setup such that the foundation classes are implicitly imported.