Utilizing web technology for the development of my iOS app serves a particular purpose. To enhance the performance of UIWebView, I have decided to store resources (including html/css/javascript) locally in the app bundle to minimize loading time.
In addition, I have implemented a thread to monitor resource updates and download newer versions if necessary. This way, the app can utilize these resources to render the web view more efficiently.
Thankfully, this solution has proven to be effective.
Although, I do have concerns about potential rejection from Apple due to downloading javascript files from remote servers. Are there any hybrid apps that employ a similar approach and are available on the App Store?