UIViewController.ViewDidUnload 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在 iOS 6 和更新版本中,永遠不會呼叫這個方法。 在舊版中,當控制器的檢視從記憶體釋放時,就會呼叫它。
[Foundation.Export("viewDidUnload")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void ViewDidUnload ();
abstract member ViewDidUnload : unit -> unit
override this.ViewDidUnload : unit -> unit
- 屬性
備註
在 iOS 6 和更新版本中, UIView 即時物件所參考的 ,在低記憶體情況下不會清除。 換句話說,在 iOS 6 和更新版本中,永遠不會呼叫此方法。 在舊版中,應用程式開發人員可能會覆寫這個方法,以確保已移除對 Scavenged View 的所有參考。 呼叫這個方法時, View 為 null
。