Skip to content

Instantly share code, notes, and snippets.

@danielkon96
Created September 20, 2019 23:16
Show Gist options
  • Save danielkon96/455e28015f505cc180d26cc97ed082ff to your computer and use it in GitHub Desktop.
Save danielkon96/455e28015f505cc180d26cc97ed082ff to your computer and use it in GitHub Desktop.
When we leave the page, unsubscribe.
/// <summary>
/// Unsubsribe from the MessagingCenter on disappearing.
/// </summary>
protected override void OnDisappearing()
{
base.OnDisappearing();
MessagingCenter.Unsubscribe<App, List<string>>((App)Xamarin.Forms.Application.Current, "ImagesSelectedAndroid");
MessagingCenter.Unsubscribe<App, List<string>>((App)Xamarin.Forms.Application.Current, "ImagesSelectediOS");
GC.Collect();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment