是否有地方可以放置类别导入语句以便所有类都可以看到它?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将该导入添加到项目中的预编译头文件 (*.pch) - 这样它将自动导入到任何实现文件中。
Add that import to the precompiled header file (*.pch) in your project - that way it will be imported to any implementation file automatically.