我正在尝试通过UIWebView
如下所示在我的 iPad 应用程序中显示 PDF。
NSData * responseData = [NSURLConnection sendSynchronousRequest:mutableUrlRequest returningResponse:nil error:nil];
[pdfWebView loadData:responseData MIMEType:@"application/pdf" textEncodingName:@"utf-8" baseURL:nil];
但这不起作用。是正确的展示方式吗?如果没有人可以指导我在 UIWebView 或任何其他有用的方法中显示 PDF。
谢谢 !