PDF file is loaded into CGPDFDocumentRef, but it doesn't display in view

685 Views Asked by At

I would like to use CGPDF API to show and manipulate the PDF on IPAD, but firstly, I'm trying to just show PDF on my view from the easy way (without screen adjusts). I don't know why PDF doesn't appear im my application, maybe i'm doing sth wrong. I'm using NSLOG to count pages, it does works, but PDF doesn't appear, just appear white background on my emulator screen.

Here is my code:

//
**//  ViewController.h**
//  MeuCGPDF
//
//  Created by admin on 01/11/13.
//  Copyright (c) 2013 admin. All right reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end


----------------------------------------------------------

//
**//  ViewController.m**
//  MeuCGPDF
//
//  Created by admin on 01/11/13.
//  Copyright (c) 2013 admin. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    NSString *pathToPdfDoc = [[NSBundle mainBundle] pathForResource:@"livro" ofType:@"pdf"];
    NSURL *pdfUrl = [NSURL fileURLWithPath:pathToPdfDoc];
    CGPDFDocumentRef document = CGPDFDocumentCreateWithURL((CFURLRef)pdfUrl);
    size_t pageCount = CGPDFDocumentGetNumberOfPages(document);

    CGPDFPageRef page = CGPDFDocumentGetPage(document, 1);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextDrawPDFPage(context, page);

    NSLog(@"Paginas: %zu", pageCount);
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

----------------------------------------------------------
1

There are 1 best solutions below

0
On

If you want to just display a PDF in web view then :

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    self.pdfWebView.delegate=self;
    [self displayPdfinWebView];
}

-(void)displayPdfinWebView {
    NSString *path = [[NSBundle mainBundle] pathForResource:@"YourPDFname" ofType:@"pdf"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [self.pdfWebView loadRequest:request];
}

If you want to have additional features like zoom with double tap or pinch, I wont recommend using WebView due to lack in performance n quality. Theres Apple code for ZoomingPdfViewer which adds a TileLayer with levelsOfDetail n levelsOfDetailBias which is decent for normal pdf sizes.

Hope that helps.