다음을 통해 공유


UIApplicationDelegate.DidReceiveRemoteNotification 메서드

정의

원격 백그라운드 알림 지원: 애플리케이션이 원격 알림을 받을 때 운영 체제에서 호출합니다.

[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 새 원격 알림 지원의 일부입니다. 권한 목록에 "원격 알림" 백그라운드 작업이 설정되어 있고 원격 알림을 받는 경우 이 메서드가 호출됩니다.

완료되면 제공된 콜백을 호출하여 운영 체제에 메서드의 결과를 알려야 합니다.

중요: 이 메서드가 완료되기 전에 결과 코드를 사용하여 제공된 콜백 메서드를 호출하지 않으면 애플리케이션이 종료됩니다.

적용 대상