NSLog导入和库

发布于 2024-12-05 02:10:50 字数 131 浏览 1 评论 0原文

我不敢相信我在找到这个时遇到了多少麻烦:

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月下客 2024-12-12 02:10:50

转到 http://developer.apple.com 并在搜索框中键入 NSLog()。这将带您进入记录这一点的基金会职能。

因此,您正在寻找的 #import 是:

#import <Foundation/Foundation.h>

或者,如果您使用的是 Xcode 5 并且打开了模块支持:

@import Foundation;

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:

#import <Foundation/Foundation.h>

or, if you are on Xcode 5 and have module support turned on:

@import Foundation;
ι不睡觉的鱼゛ 2024-12-12 02:10:50

就像其余的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文