Ok guys, so I am new to iOS programming.
Im trying to build a VERY SIMPLE WebView iOS App that loads an External URL and all the Javascript (@external server too) associated with it.
The following code loads the page perfectly but when I click on the "Login" button, the Javascript it calls doesnt seem to do anything.
- (void)loadView
{
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
UIWebView *webView =[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
webView.scalesPageToFit = YES;
[[self view] addSubview:webView];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://mywebsitehere.com/mob/"
]]];
}
This is the code for the Login button in the external HTML file:
<a id="btnLogin" data-role="button" data-icon="star" href="javascript:__doPostBack('btnLogin','')"><span>Login</span></a>
I have also tried using different PhoneGap/Cordova/ChildBrowser tutorials and everything seems very outdated/not working.
If possible, I also need GeoLocation (web page requests current position for certain features). I basically just need it to work exactly as it does in Safari.
Please Help!