My app will be released with the images inside it, but I may need to download other images later and replace the old images with the downloaded ones.
So the question is, Is it possible to replace the images bundled inside the app with the downloaded ones??
If yes, may you recommend some resources to search in?
If no, may you suggest other way to do the previous?
Thank you.
Use the images in your bundle only as a default. You can create your own version of
[UIImage imageNamed:]method, e.g.[UIImage myImageNamed:]which will look first into the folder with downloaded images and if it doesn’t find the image there, it will use the one in the bundle.