I want to open some website in my iphone app using UIWebView. The website requires username and password and I have these username and password.
I was wondering is there anyway I can open the website in my UIWebView without any login screen? I mean as I already have the username and password, can I use this information to log in to website automatically and show the required necessary page onto my UIWebView iphone app.
I just want to get rid of logging to website as users have already entered the login information when they open the app. Thats redundant.
Any help is greatly appreciated.
Thanks.
I have discovered way to solve this in a Objective-C way. We can use NSURLConnection to post the form.
Code:
Ask me if you need more information.