Xcode 导入 .m “失败”

发布于 2024-12-10 01:50:38 字数 169 浏览 0 评论 0原文

我有一个问题:在我的项目中,我需要将一个整数值从“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 技术交流群。

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

发布评论

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

评论(2

梦毁影碎の 2024-12-17 01:50:38

好吧,您不导入 .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.

鱼窥荷 2024-12-17 01:50:38

假设该值是常数,将其放入附加的 .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".

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