What is the best way to show images on an app?
Currently we download from our DB via base 64 and store it in core data, which makes scrolling down the collections view of products a long time.
I don't believe we need to save to core data, because internet speeds are efficient these days and because i don't really see a need to save tons of images (if the user is view many products in one sitting) to the device. Also I don't believe many users will think of going on any type of B2C app offline, considering it won't show the latest prices and inventory.
I'm thinking if we are able to draw the image from a URL. Please suggest would you guys would do in my situation.
Currently we download from our DB via base 64 and store it in core data, which makes scrolling down the collections view of products a long time.
I don't believe we need to save to core data, because internet speeds are efficient these days and because i don't really see a need to save tons of images (if the user is view many products in one sitting) to the device. Also I don't believe many users will think of going on any type of B2C app offline, considering it won't show the latest prices and inventory.
I'm thinking if we are able to draw the image from a URL. Please suggest would you guys would do in my situation.