いくつかの をスケジュールしようとしUILocalNotification
ていますが、既に作成された通知にアクセスする必要があります。
作成されたすべてのUILocalNotification
のリスト/配列を持つことは可能ですか? 既存のローカル通知の発行日を編集できますか?
これは、ローカル通知を作成するために使用するコードです。
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = pickerDate;
localNotification.alertBody = textFieldName.text;
localNotification.alertAction = @"Item date expired!";
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber] + 1;