When I using code below to open an embedded html file. it cannot trigger the delegate : [ - webView:shouldStartLoadWithRequest:navigationType:];
NSURL *url = [NSURL URLWithString:@"file:///private/var/..../(myapp).app/www/index.html"];
NSMutableURLRequest *urlReq = [NSMutableURLRequest requestWith:url
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval: 60.0f];
[webview loadRequest:urlReq];
How can I get this request?