I have a problem when convert multiple UIView to UIImage to save into disk. I used the following to convert each UIView to UIImage UIImage image; UIGraphics.BeginImageContext (View.Frame.Size); View.Layer.RenderInContext (UIGraphics.GetCurrentContext ()); image = UIGraphics.GetImageFromCurrentImageContext (); UIGraphics.EndImageContext ();
and I run a loop to convert multiple UIView. If the number of converted UIView is about 30 or more, the app is crashed. Please help me to resolve this problem. Thank you very much!