본문 바로가기
iPhone 개발

Notification

by GoodDev 2011. 11. 25.
1. 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 sharedApplicationcancelAllLocalNotifications];

[[UIApplication sharedApplicationcancelLocalNotification:localNotif]; 

댓글