Xcode 导入 .m “失败”
我有一个问题:在我的项目中,我需要将一个整数值从“Options.m”传递到“GameViewOne.m”。我尝试使用命令(#import "Options.m")导入,但它抛出错误并且无法构建。
我认为这与#include“anyfile.h”相同,但我错了。
你能帮我导入 .m 文件吗?
I have a problem: In my project, I need pass an integer value from "Options.m" to "GameViewOne.m". I try to import with the comand (#import "Options.m"), but it throws an error and doesn't build.
I think that is the same to #include "anyfile.h", but I am wrong.
Can you help me to import a .m file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,您不导入 .m 文件。它们包含代码。将值从一个类实例传递到另一个类实例的方法是实现一种方法来执行此操作。
即类似
[mygameview setInteger:[myoptions getInteger]];
我强烈建议阅读编程入门文本。
Well, you don't import .m files. They contain code. The way to pass a value from one class instance to another class instance would be by implementing a method to do so.
I.e. something like
[mygameview setInteger:[myoptions getInteger]];
I strongly recommend reading a programming introductory text.
假设该值是常数,将其放入附加的 .h 文件中,并将其包含在“Options.m”和“GameViewOne.m”中。
Assuming that the value is constant, put it in the additional .h file and include it both in "Options.m" and "GameViewOne.m".