在另一个类的应用程序委托中使用 NSMutableArray
我的应用程序委托中有一个 NSMutableArray
。我希望在程序的不同类中使用该可变数组,就像它是全局变量一样。我该怎么做?
就像导入标头并引用对象一样简单吗?
I have an NSMutableArray
in my app delegate. I wish to use that mutable array in a different class in my program, as if it were a global variable. How would I do this?
Is it as simple as importing the header and referencing the object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
利用 UIApplication 单例:
然后,访问您的数组 属性如下所示:
appDelegate.yourArrayProperty
Take advantage of the UIApplication singleton:
Then, access your array property like this:
appDelegate.yourArrayProperty
正如 Sean 所说,让您对委托的属性进行数组
然后像这样访问该数组:
Make you array a property of your delegate as Sean said
Then access the array like this :