I’m developing an iPad App with downloadable content to be able to persist it through updates.
I’m storing my content in Library/Caches dir seems to work fairly ok except for localized html content: when i was storing it in app’s bundle i had $LANG_CODE.lproj folders and had no issues. Know that i migrated all those lproj folders in Caches dir, localized content won’t load. Assuming that i could do the logic by myself of finding the current locale then branching through different paths to get proper content i was wondering if there was a better way to do this. Thanks!
I’m developing an iPad App with downloadable content to be able to persist it
Share
You can use
NSBundleand point it to a directory in you caches dir. As long as you have.lprojfolders in that directory, you should be able to access localized resources in the same way.