1. Local Notification 등록
주의 사항 : 어플이 수행중이면 해당 Notification이 동작하지 않습니다.
2. Local Notification 제거
NSTimeInterval interval = 10;
NSDate *notificationDate = [NSDate dateWithTimeIntervalSinceNow:interval];
UILocalNotification *local = [[UILocalNotification alloc] init];
local.fireDate = notificationDate;
//®local.timeZone = [NSTimeZone defaultTimeZone];
local.alertBody = @"xxxxx";
local.alertAction = nil;
local.soundName = UILocalNotificationDefaultSoundName;
local.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:local];주의 사항 : 어플이 수행중이면 해당 Notification이 동작하지 않습니다.
2. Local Notification 제거
[[UIApplication sharedApplication] cancelAllLocalNotifications];
[[UIApplication sharedApplication] cancelLocalNotification:localNotif];
댓글