I have an iOS application with a long list of items that will be sent to a remote web server. The list may be long enough to exceed the recommended length for a GET request. After the list is published, the user can log in to his account and manage the list.
Ideally, I would like the POST list to be included in Safari (or another default browser), so if the user is already logged in, they don’t need to do this again, and they have access to all the usual web browsers functionality.
It seems to work with UIWebView, but not the best interface.
This can be done on Android or UIWebView using this: stack overflow
source
share