共用方式為


CPApplicationDelegate.PerformFetch 方法

定義

背景支援:由作業系統叫用,以允許應用程式下載資料。

[Foundation.Export("application:performFetchWithCompletionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void PerformFetch(UIKit.UIApplication application, Action<UIKit.UIBackgroundFetchResult> completionHandler);
abstract member PerformFetch : UIKit.UIApplication * Action<UIKit.UIBackgroundFetchResult> -> unit
override this.PerformFetch : UIKit.UIApplication * Action<UIKit.UIBackgroundFetchResult> -> unit

參數

application
UIApplication

UIApplication 的控制碼。

completionHandler
Action<UIBackgroundFetchResult>

叫用以通知作業系統背景擷取作業結果的回呼。

屬性

備註

此方法是 iOS 7.0 新背景擷取支援的一部分。 如果您的權利列出「擷取」背景作業,並在呼叫 方法啟用擷取 SetMinimumBackgroundFetchInterval(Double) 之後叫用此方法。

一旦發生這種情況,作業系統會決定喚醒應用程式的適當時間,以允許它下載資料。 這樣做時,它會先呼叫 FinishedLaunching(IUIApplicationDelegate, UIApplication, NSDictionary) 方法,然後叫用這個方法。

這個方法應該從網路下載資料,並在完成之前,使用適當的狀態碼叫用提供的回呼,以通知作業系統已下載背景擷取作業, (下載新資料、發生網路連線問題或找不到任何新資料) 。

完成時,您必須叫用提供的回呼,以通知作業系統資料傳輸的結果。

重要事項:在此方法完成之前,無法以結果碼呼叫提供的回呼方法,會導致您的應用程式終止。

適用於