iphone关于在类之间发送数据时导入标头的问题

发布于 2024-10-26 03:59:16 字数 199 浏览 3 评论 0原文

我将数据从一个类发送到另一个类,它可以工作,但我有一个问题,我注意到如果我

#import“receiver.h”

sender.h 或 sender.m 中的

类可以以任何方式工作,那么导入接收器类的首选正确位置是什么?在*.h 中还是在*.m 中?

恩克斯!

Im sending data from one class to another, Its working but I have a question, I noticed that if I

#import "receiver.h"

class in the sender.h or sender.m works either way,

so what is the preffered correct place to import my receiver class? in the *.h or in the *.m??

tnx!

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

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

发布评论

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

评论(2

¢蛋碎的人ぎ生 2024-11-02 03:59:16

将其导入到 .m 中

您应该仅在标头中引用它所声明的内容时导入该文件。如果标头仅引用指针,那么您可以在标头中使用前向声明并将其导入到 .m 中

Import it in the .m

You should only import a file in the header if it refers to something it declares. If the header only refers to a pointer then you can use a forward declaration in the header and import it in the .m

别再吹冷风 2024-11-02 03:59:16

我推荐 .m 文件。

I'd recommend the .m file.

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