«uilocalnotification» 태그된 질문

10
앱이 열려 있고 포 그라운드에있을 때 주식 iOS 알림 배너를 표시합니까?
Apple의 공식 iOS 메시지 앱이 열려 있고 포 그라운드에있을 때 다른 연락처의 새 메시지가 주식 기본 iOS 알림 알림 배너를 트리거합니다. 아래 이미지를 참조하십시오. App Store의 타사 앱에서 가능합니까? 앱이 열려 있고 포 그라운드에있는 동안 앱에 대한 로컬 및 / 또는 푸시 알림 ? 내 앱을 테스트 할 때 알림이 …

5
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 …


13
특정 로컬 알림 삭제
지역 알림을 기반으로 iPhone 알람 앱을 개발 중입니다. 알람을 삭제하면 관련 로컬 알림이 취소됩니다. 그러나 로컬 알림 배열에서 취소 할 개체를 정확히 어떻게 결정할 수 있습니까? [[UIApplication sharedApplication] cancelLocalNotification:notification]방법을 알고 있지만 취소하려면 어떻게이 '알림'을받을 수 있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.