UIApplicationDelegate.DidReceiveRemoteNotification 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
원격 백그라운드 알림 지원: 애플리케이션이 원격 알림을 받을 때 운영 체제에서 호출합니다.
[Foundation.Export("application:didReceiveRemoteNotification:fetchCompletionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void DidReceiveRemoteNotification (UIKit.UIApplication application, Foundation.NSDictionary userInfo, Action<UIKit.UIBackgroundFetchResult> completionHandler);
abstract member DidReceiveRemoteNotification : UIKit.UIApplication * Foundation.NSDictionary * Action<UIKit.UIBackgroundFetchResult> -> unit
override this.DidReceiveRemoteNotification : UIKit.UIApplication * Foundation.NSDictionary * Action<UIKit.UIBackgroundFetchResult> -> unit
매개 변수
- application
- UIApplication
UIApplication에 대한 핸들입니다.
- userInfo
- NSDictionary
- completionHandler
- Action<UIBackgroundFetchResult>
백그라운드 가져오기 작업의 결과를 운영 체제에 알리기 위해 호출하는 콜백입니다.
- 특성
설명
이 방법은 iOS 7.0 새 원격 알림 지원의 일부입니다. 권한 목록에 "원격 알림" 백그라운드 작업이 설정되어 있고 원격 알림을 받는 경우 이 메서드가 호출됩니다.
완료되면 제공된 콜백을 호출하여 운영 체제에 메서드의 결과를 알려야 합니다.
중요: 이 메서드가 완료되기 전에 결과 코드를 사용하여 제공된 콜백 메서드를 호출하지 않으면 애플리케이션이 종료됩니다.