I want to use my existing angularjs functionality in my ios app. I will be sending data from Obj C to angularjs, angular will check if the data is correct, and then send back a response "ok" to Obj C.
When Obj C receives the response "ok", it will load the second view controller.
For some reason it seems like
-(void)webViewDidStartLoad:(UIWebView *)webView
- (void)webViewDidFinishLoad:(UIWebView *)webView
and
- (BOOL)webView:(UIWebView *)webView2 shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
are not by my side.. I will have to go back and forth between Obj C and AngularJS.
Any help would be really appreciated. If you have code samples and links, please do post it.
Thanks