반응형
UIApplication *app = [UIApplication sharedApplication];
NSArray *scheduled = [app scheduledLocalNotifications];
if (scheduled.count)
{
[app cancelAllLocalNotifications];
}
UILocalNotification *alarm = [[UILocalNotification alloc] init];
if (alarm)
{
alarm.fireDate = [NSDate dateWithTimeIntervalSinceNow:5.0f];
alarm.timeZone = [NSTimeZone defaultTimeZone];
alarm.repeatInterval = 0;
alarm.alertBody = @"Five Seconds Have Passed";
[app scheduleLocalNotification:alarm];
}
반응형
'IPHONE' 카테고리의 다른 글
XCode4 단축키. (0) | 2013.09.12 |
---|---|
아카이브에 저장하고 불러 오기 샘플 코드. (0) | 2013.09.04 |
사운드 (0) | 2013.07.04 |
UIActionSheet 사용하기. (0) | 2013.05.30 |
UIViewAlert 사용하기. (0) | 2013.05.30 |