gpt4 book ai didi

iphone - 在类之间传递对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:18:35 25 4
gpt4 key购买 nike

在我的 AppDelegate 中,我从互联网上下载了一些数据并将其存储到一个数组中。我希望我的 ViewControllers 之一访问该数组。我将如何去做呢?这是实现委托(delegate)或协议(protocol)的好情况吗?如果是这样,有人可以为此推荐一个好的教程吗?

谢谢

编辑:

请注意,数据会在每次启动时刷新,因此不需要核心数据或 plist。此外,数据是我创建的自定义对象,因此它们不能存储在例如 plist 中。

最佳答案

你有两个选择:

  1. 实现委托(delegate)协议(protocol)
  2. 使用 NSNotifications

每个问题的优点/缺点都在这个问答中得到了很好的阐述: Delegates v Notifications

由于通知更容易实现并且可能足以满足您的需求,您可以通过以下步骤实现它:

  1. 在您下载数据的类中:下载数据并填充数组后,包括以下行:

NSDictionary *dict = [NSDictionary dictionaryWithObject:array forKey:@"Data"];
[[NSNotificationCenter defaultCenter] postNotificationName:@"DataDownloaded"object:self userInfo:dict];

  1. 在您要接收数据的类中:

2.1 将以下行添加到您的 viewDidLoad 方法中:

`[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dataDownloaded:) name:@"DataDownloaded" object:nil];

2.2 创建dataDownloaded选择器:

  • (void)dataDownloaded:(NSNotification *)注意{

    NSDictionary *dict = note.userInfo;
    NSArray *dataArray = [note.userInfo objectForKey:@"DataDownloaded"];

2.3 在 dealloc 和 viewDidUnload 中添加如下行:

[[[NSNotificationCenter defaultCenter] removeObserver:self];

关于iphone - 在类之间传递对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6975076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com