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