I have a content app and would like to notify users of new content using Apple Push Notification Service, bypassing the now very long App Store submissions. Once the user receives the notification, a download update button will become enabled. The user will download an sql file plus images from my website. The sql file will execute insert statements and the images will download to the disk.
I currently load content (strings and bundle image references) into a UIWebView. Images are displayed as part of the content. How would I execute the sql file to insert new content? Then, would I also need to start referencing images on disk rather than from the bundle, which is where I put images while using App Store update submissions?
For the sql file, I can probably run some event based code once the download is complete. But then the read only database needs to be reloaded for new content to be seen. Would the user have to restart the app?