This question may seem a little odd/weird, but I have two UIWebViews, one of which is set to hidden in the .xib file, and it's delegate set to my view controller. The 2nd UIWebView is used to parse and "cleanup" the html from the hidden UIWebView and display it as a "mobilized" page to the user. There is no delegate on the non-hidden UIWebView in my .xib file.
The problem I'm having is that when the 2nd UIWebView finishes loading, the user taps on a link within the 2nd UIWebView, and it finishes loading the non parsed webpage because it didn't send this link click back to the hidden UIWebView to be loaded so that the 2nd UIWebView can parse it when it finishes loading. My two UIWebView's are properties in my .m file.
Is there any way I can solve this? I appreciate any responses offered! If i haven't stated my question clearly, please let me know!
Some code:
.h:
#import <UIKit/UIKit.h>
@interface Web : UIViewController <UIWebViewDelegate>
@property (nonatomic, strong) NSURL *url;
@end
.m:
#import "Web.h"
@interface Web()
@property (nonatomic, strong) IBOutlet UIWebView *webView2;
@property (nonatomic, strong) IBOutlet UIWebView *webView;
@property (nonatomic, strong) NSMutableString *output;
@property (nonatomic, strong) NSString *wrapper;
@end
@implementation Web
- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
if(webView == self.webView2)
{
[self.webView loadRequest:(NSURLRequest*)request];
}
else
{
[self.webView loadRequest:(NSURLRequest*)request];
}
return NO;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self.webView loadRequest:[NSURLRequest requestWithURL:self.url]];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
[self cleanUp];
[self.webView2 loadHTMLString:self.output baseURL:nil];
}
- (void)cleanUp
{
NSString *input = [self.webView stringByEvaluatingJavaScriptFromString:@"document.getElementById(\"ctl_ctl_cphBody_cphCenter_divHtml\").innerHTML;"];
NSString *breadcrumbString = [self.webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByClassName('breadcrumb')[0].outerHTML;"];
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
self.wrapper = @"<html><meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\"/><meta name=\"viewport\" content=\"initial-scale = 1.37,maximum-scale = 2.0\"/></html>";
}
else
{
self.wrapper = @"<html><meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\"/><meta name=\"viewport\" content=\"initial-scale = 0.57,maximum-scale = 2.0\"/></html>";
}
self.output = [NSMutableString stringWithString:self.wrapper];
[self.output insertString:input atIndex:147];
[self.output replaceOccurrencesOfString:breadcrumbString withString:@"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [self.output length])];
}