показать полноэкранный PDF в uiwebview - PullRequest
1 голос
/ 24 марта 2011

Я пытаюсь загрузить pdf в uiwebview, но 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];

1 Ответ

5 голосов
/ 24 марта 2011

В веб-просмотре установите свойство scalePagesToFit, и с вами все будет в порядке.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...