在我的 AppDelegate 中,我从 Internet 下载了一些数据并将其存储到一个数组中。我希望我的一个 ViewController 访问该数组。我该怎么做呢?这是实现委托(delegate)或协议(protocol)的好情况吗?如果是这样,有人可以为此推荐一个好的教程吗?
谢谢
编辑:
请注意,每次启动时数据都会刷新,因此不需要 Core Data 或 plist。此外,数据是我创建的自定义对象,因此它们不能存储在例如 plist 中。
Best Answer-推荐答案 strong>
你有两个选择:
- 实现委托(delegate)协议(protocol)
- 使用 NSNotifications
每个的优点/缺点在这个问题和答案中都有很好的阐述:
Delegates v Notifications
由于通知更容易实现并且可能足以满足您的需求,因此您可以通过以下步骤实现它:
- 在您下载数据的类(class)中:
下载数据并填充数组后,添加以下行:
NSDictionary *dict = [NSDictionary dictionaryWithObject:array forKey"Data"];
[[NSNotificationCenter defaultCenter] postNotificationName"DataDownloaded"object:self userInfo:dict];
- 在您要接收数据的类中:
2.1 将以下行添加到您的 viewDidLoad 方法中:
`[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(dataDownloaded name"DataDownloaded" object:nil];
2.2 创建dataDownloaded选择器:
2.3 将以下行添加到dealloc和viewDidUnload:
[[[NSNotificationCenter defaultCenter] removeObserver:self];
关于iphone - 在类之间传递对象,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/6975076/
|