在uiwebview中显示全屏pdf

发布于 2024-10-26 07:00:00 字数 916 浏览 1 评论 0原文

我正在尝试在 uiwebview 中加载 pdf,但 pdf 在写手侧显示有空白

如何让全屏显示

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,self.view.bounds.size.height)];

    //webView.contentMode = UIViewContentModeScaleAspectFit;

    NSString *path = [[NSBundle mainBundle] pathForResource:@" manual" ofType:@"pdf"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];


    CGRect frame = webView.frame;
    // you may need to modify the 5 and 10 below to match the size of the PDF border
    frame.origin.x = frame.origin.x - 5;
    frame.origin.y = frame.origin.y - 5;
    frame.size.width = frame.size.width + 100;
    frame.size.height = frame.size.height + 100;


    webView.frame = frame; 

     [webView loadRequest:request];

    [self.view addSubview:webView];
    [webView release];

I am trying to load pdf in uiwebview but the pdf be displayed with white space on the write hand side

how to let be full screen displayed

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,self.view.bounds.size.height)];

    //webView.contentMode = UIViewContentModeScaleAspectFit;

    NSString *path = [[NSBundle mainBundle] pathForResource:@" manual" ofType:@"pdf"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];


    CGRect frame = webView.frame;
    // you may need to modify the 5 and 10 below to match the size of the PDF border
    frame.origin.x = frame.origin.x - 5;
    frame.origin.y = frame.origin.y - 5;
    frame.size.width = frame.size.width + 100;
    frame.size.height = frame.size.height + 100;


    webView.frame = frame; 

     [webView loadRequest:request];

    [self.view addSubview:webView];
    [webView release];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亚希 2024-11-02 07:00:00

在网络视图上设置属性scalesPagesToFit,你应该没问题。

On the webview set the property scalesPagesToFit and you should be ok.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文