- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
localNotification = [[UILocalNotification alloc] init];
NSDate *currentDate = [NSDate date];
localNotification.fireDate = [currentDate dateByAddingTimeInterval:60];
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.alertAction = @"Open the App";
localNotification.alertBody = @"Daily Reminder - Minute by Minute";
localNotification.repeatInterval = NSMinuteCalendarUnit;
localNotification.applicationIconBadgeNumber = 10;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}
- (IBAction)stopNotifications:(id)sender {
[[UIApplication sharedApplication] cancelLocalNotification:localNotification];
[UIApplication sharedApplication].applicationIconBadgeNumber = (NSInteger)badgeStepper.value;
}
'IPHONE' 카테고리의 다른 글
프로그램으로 스토리보드 Segue 호출하기 (0) | 2014.01.02 |
---|---|
창 닫을때 애니메이션 효과 주기. (0) | 2013.12.24 |
MKMapView 에 MKPointAnnotation 추가 하기. (0) | 2013.12.19 |
특정 위치에 있을때 모니터링 하기. (0) | 2013.12.18 |
CLLocationManager 상태 체크 예제 코드 (0) | 2013.12.18 |