I'm developing an app using UITableView driven content.
Current testing is done with local XML of size 100kb. This info should update about once every 2 months. The flow is reading pre-sorted XML -> convert to NSDictionary -> UITableView
Since parsing XML will take some work during load every time, plus table index, sorting and searching seems clumsy. So I have this idea about storing such info in a sqlite DB file
My real question is whether it's possible to download the entire sqlite DB file via http(s) instead of XML to update the info?