-
Notifications
You must be signed in to change notification settings - Fork 374
iOS API
Fabien Molinet edited this page Dec 17, 2015
·
12 revisions
On iOS images can be loaded from Internet or File.
Or from an URL. In this case the image is cached (by default 30 days but there is an optional TimeSpan so you can choose yours).
ImageService.LoadUrl(urlToImage).Into(_imageView);when you want to load the image from a file or application bundle:
ImageService.LoadFile(fullPathToImage).Into(_imageView);Remark: on iOS both ImageService.LoadFileFromApplicationBundle and ImageService.CompiledResource have the same effect as ImageService.LoadFile.