In Xamarin.Forms application, We are getting "Received memory pressure event 1 vm pressure 0" when i use the iOS app for more time. RCA : We have a view(like Feeds in instagram) and it has list of images say 10 images. We are creating instance of memory stream in the converter attached to the image. So each time the page loads, 10 instance of memory stream is created. And when we are in the view and if an image gets updated, it is creating a new instance of memorystream again for all images, so the instance is getting increased and it is throwing the memory error. If i dispose memorystream, then, image is not loading. How to handle this?