我有這樣的代碼:的iOS本地通知錯誤
UILocalNotification *notification = [[UILocalNotification alloc] init]; [notification setAlertBody:@"This is a message"]; [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:10]]; [notification setTimeZone:[NSTimeZone defaultTimeZone]]; [application setSchedualLocalNotifications:[NSArray arrayWithObject:notification]];
這正常的AppDelegate.m
或(-(void) applicationDidEnterBackground:(UIApplication *)application)
但它不會在ViewController
工作。當用戶點擊一個按鈕時,我想要發生這種確切的事情,所以我需要ViewController
而不是AppDelegate
這個代碼。我如何更改此代碼,以便它可以在ViewController
中執行相同的操作!非常感謝!
這個代碼將在工作viewControllers還有些別的地方你去錯了,我這麼認爲。 – Balu 2013-04-29 04:33:05