私はいくつかUILocalNotification
をスケジュールしようとしています。すでに作成された通知にアクセスする必要があります。既存のUILocalNotificationsのリストを取得して日付を変更する
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;