iphone关于在类之间发送数据时导入标头的问题
我将数据从一个类发送到另一个类,它可以工作,但我有一个问题,我注意到如果我
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其导入到 .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
我推荐 .m 文件。
I'd recommend the .m file.