iOS 8에서 UILocalNotification을 수신하기위한 사용자 권한 요청
다음을 사용하여 App Delegate에서 로컬 알림을 설정했습니다. - (void)applicationDidEnterBackground:(UIApplication *)application { UILocalNotification *notification = [[UILocalNotification alloc]init]; [notification setAlertBody:@"Watch the Latest Episode of CCA-TV"]; [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:5]]; [notification setTimeZone:[NSTimeZone defaultTimeZone]]; [application setScheduledLocalNotifications:[NSArray arrayWithObject:notification]]; } 앱을 실행 한 다음 종료하면 다음과 같은 오류 메시지가 표시됩니다. 2014-06-07 11 : 14 : 16.663 CCA-TV …