Save method in cocoatouch?
- by Henry D'Andrea
What is the save method for cocoatouch?
I need to add it where the comment is: // whatever you want to do.
(BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)ntype {
if ([request.URL.scheme isEqualToString:@"hide"]) {
// whatever you want to do.
}
return true;
}