是否有地方可以放置类别导入语句以便所有类都可以看到它?

发布于 2024-11-23 20:11:48 字数 139 浏览 2 评论 0原文

我有一个 UIColor 的 Objective-C 类别,我想将其“导入”到我的项目中的任何位置。但是,我没有对每个需要它的类使用 #import,而是告诉我有一种方法可以设置它,以便所有类都可以看到它。有人知道这是如何实现的吗?

提前致谢, 抢

I have an Objective-C category of UIColor that I would like to "import" everywhere in my project. But instead of using the #import to every class that needs it I was told there was a way to set it up so all classes can see it. Anyone know how this is accomplished?

Thanks in advance,
Rob

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

今天小雨转甜 2024-11-30 20:11:48

将该导入添加到项目中的预编译头文件 (*.pch) - 这样它将自动导入到任何实现文件中。

Add that import to the precompiled header file (*.pch) in your project - that way it will be imported to any implementation file automatically.

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