Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有全局变量的概念?就像我想检查我最初是否有网络并根据显示一些功能。我明白,我可以继续在表单之间传递变量。这是唯一的方法吗
谢谢
这里典型的 Objective C OOP 编码解决方案是使用 MVC 模式。在模型对象中实例化这些变量,可能是一个单例和/或将该模型对象传递给需要获取/设置此状态信息的对象。
但是Objective C也是普通ANSI C的超集。因此,如果您不需要/想要封装以实现可重用性/可维护性,则可以使用标准C全局变量,可以从Objective C中的任何地方访问。