UiWebView not loading javascript and css in Ipad

have an WebApplication works fine in chrome and safari in ipad, iphone, in the same way i am trying to call the same URL in UiWebView , it is working fine in iPhones, but it is not working in iPad os version 9.2, Ipad mini 4 , webapp page is not loading any CSS, and Javascript file.

here is my code

- (void)viewDidLoad { [super viewDidLoad]; NSString *fullURL = @"http:/ NSURL *url = [NSURL URLWithString:fullURL]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; _WebView.frame = self.view.bounds; [_WebView loadRequest:requestObj];

}

kindly help , how i can make it work in iPad's

Thanks in Advance

Have you tried implementing the on error delegate method of the UIWebView to see if that throws up anything?

Did you ever get to the bottom of this? I am experiencing the same issue and would be grateful to hear if you discovered the root cause. Very odd!

UIWebView has been replaced w/WKWebView since this comment was posted, so if you're doing anything w/iOS 10, I doubt it is the 'same issue'.

UiWebView not loading javascript and css in Ipad
 
 
Q