UIKit.UIViewController.DidReceiveMemoryWarning Method
Called when the system is running low on memory.

Syntax

[Foundation.Export("didReceiveMemoryWarning")]
public virtual void DidReceiveMemoryWarning ()

Remarks

This method is automatically called when the system is running low on memory. Application developers who override this method in order to release resources must call base.DidReceiveMemoryWarning(), as shown in the following code, taken from the “Media Notes” sample:

C# Example

public override void DidReceiveMemoryWarning ()
{
    photoMap.Clear ();
    View = null;
    photoImageView = null;
    toolbar = null;
    syncIsNeeded = true;
    base.DidReceiveMemoryWarning();
}
  

Related content

Requirements

Namespace: UIKit
Assembly: Xamarin.iOS (in Xamarin.iOS.dll)
Assembly Versions: 0.0.0.0