在另一个类的应用程序委托中使用 NSMutableArray

发布于 2024-11-08 15:28:46 字数 111 浏览 0 评论 0原文

我的应用程序委托中有一个 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 技术交流群。

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

发布评论

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

评论(2

似最初 2024-11-15 15:28:46

利用 UIApplication 单例:

YourAppDelegate *appDelegate = (YourAppDelegate *)[[UIApplication sharedApplication] delegate];

然后,访问您的数组 属性如下所示:appDelegate.yourArrayProperty

Take advantage of the UIApplication singleton:

YourAppDelegate *appDelegate = (YourAppDelegate *)[[UIApplication sharedApplication] delegate];

Then, access your array property like this: appDelegate.yourArrayProperty

我做我的改变 2024-11-15 15:28:46

正如 Sean 所说,让您对委托的属性进行数组

@property(readonly) NSMutableArray *theArray;

然后像这样访问该数组:

((YourAppDelegateClass *)[UIApplication sharedApplication].delegate).theArray

Make you array a property of your delegate as Sean said

@property(readonly) NSMutableArray *theArray;

Then access the array like this :

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