一个类接口中定义的 obj c 中的结构体不可用于其他类

发布于 2024-12-02 11:28:43 字数 112 浏览 0 评论 0原文

我在一个类接口中定义了一个结构。 我在那堂课上正确地使用了它。但我无法在其他课程中引用此结构。 我想我缺少一些基础知识。一般来说,一个类中定义的结构数据类型应该可以被项目中的所有类访问,对吗?为什么这不起作用?

I have defined a structure in one class interface.
I have used it in that class properly. But I m not able to refer to this structure in other classes.
I think I m missing some basics. Generally struct data type defined in one class should be accessible to all the classes in the project right? Why is this not working?

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

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

发布评论

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

评论(2

泅渡 2024-12-09 11:28:43

如果该结构体在类 .h 文件中声明,则必须在需要访问该结构体的任何位置导入该 .h 文件。

If the struct is declared in your class .h file, you have to import the .h file wherever you need to access the struct.

临风闻羌笛 2024-12-09 11:28:43

如果您有需要在多个模块之间共享的定义,那么最好将它们放在单独的公共头文件中,并在需要的地方导入该头文件。这种设计简洁且具有高度可扩展性。

If you have definitions that need to be shared amongst several modules then it's best to place them in a separate, common header file and import that header file wherever needed. This design is clean and highly extensible.

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