Loading a local PDF file into the iOS web view
http://gssdaily.com/forum/viewtopic.php?f=20&t=1958
-
Code:
Select all
-
- (void)viewDidLoad {
[super viewDidLoad];
NSString *thePath = [[NSBundle mainBundle] pathForResource:@"iPhone_User_Guide" ofType:@"pdf"];
if (thePath) {
NSData *pdfData = [NSData dataWithContentsOfFile:thePath];
[(UIWebView *)self.view loadData:pdfData MIMEType:@"application/pdf"
本文介绍如何使用iOS的UIWebView加载设备上的本地PDF文件。通过NSBundle获取PDF路径,并使用NSData读取文件内容,最终设置UIWebView显示PDF。
1万+

被折叠的 条评论
为什么被折叠?



