0
我有一個存儲在ViewController.m中的數組。但是當應用程序進入後臺時,我想從數組中發佈通知。在AppDelegate中使用ViewController中的數組
所以我的NSMutableArray 「名單」 是在ViewController.m創建,但我需要在AppDelegate.m
- (void)applicationDidEnterBackground:(UIApplication *)application
for (NSString *thing in list) {
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.alertBody = thing.text;
[[UIApplication sharedApplication] presentLocalNotificationNow:notif];
我應該在哪裏? – Brian
上面的代碼應該放在應用程序委託中......但是您應該按照我所說的關於NSUserDefaults的內容進行操作。 –