Cannot open PDF file using UIWebView in iOS8beta5
问题 I have working project in which i display pdf file in UIWebView While testing my application in iOS8beta5 with XCode5 , it did not work In log it display failed to find PDF header : '%PDF' not found I create sample application with below code which also have same problem CODE : self.myWebView.delegate = self; NSString *path = [[NSBundle mainBundle] pathForResource:@"201" ofType:@"pdf"]; NSURL *targetURL = [NSURL fileURLWithPath:path]; NSURLRequest *request = [NSURLRequest requestWithURL