Pages

Saturday, March 1, 2014

Load PDF in UIViewcontroller

Hello!

I am creating a simple PDF reader. All of the sample codes that i saw i had to tap a button to open the pdf. But what i really want is to open the pdf file when te app runs, without tapping a button.

This is my viewDidLoad code in ViewController.m:

 

- (void)viewDidLoad

{

    [super viewDidLoad];

    NSString *path = [[NSBundle mainBundle] pathForResource:@"399_KIT_ELEITORAL_BX_01" ofType:@"pdf"];

    PageViewController *page = [[PageViewController alloc] initWithPDFAtPath:path];

    [self presentViewController:page animated:YES completion:NULL];

}

 

When i run the app, it doesn`t show the pdf.

 

Thank you!


View the original article here

0 comments:

Post a Comment