以前に設定したローカル通知から残り時間を取得する方法があるかどうかを知りたいです。
私がこのようなものを作ったとしましょう:
//Creating Notification
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = someTime;
localNotif.alertBody = @"Your parking time will expire in 10 mins";
localNotif.alertAction = @"View";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
それで、アプリを完全に閉じます。もう一度開いて、通知が開始されるまでの残り時間を示すメッセージを表示したいと思います。
前もって感謝します。