If I look at the discussion here: http://monotouch.2284126.n4.nabble.com/UIImageView-td4303177.html
Both, UIImage.FromFile() and UIImage.FromFileUncached() map to imageWithContentsOfFile: and are not supposed to cache, however my experience is different and I'm pretty sure that UIImage.FromFile() caches (from what I see in Instruments).
The documentation here (http://docs.xamarin.com/ios/tutorials/Working_with_Images) states that UIImage.FromBundle() does cache, but UIImage.FromFile() does not. Is that still true? Or is there maybe some magic that FromFile() caches if the image is inside the app bundle?
Can somebody please make clear what is the correct way to:
- Load a UIImage with caching?
- Load a UIImage without caching ?