NSURL *pdfURL = [[NSBundle mainBundle] URLForResource:@"sampleLayout.pdf" withExtension:nil];
this above line warns NSBundle may not respond to -URLForResource:withExtension: and the app crashes while loading the pdf file from this url path
NSURL *pdfURL = [[NSBundle mainBundle] URLForResource:@"sampleLayout.pdf" withExtension:nil];
this above line warns NSBundle may not respond to -URLForResource:withExtension: and the app crashes while loading the pdf file from this url path
Why dont you try like this..?
NSString *urlPath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:urlPath];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
[webViewOutlet loadRequest:urlRequest];
NSURL *pdfPath = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"pdf"]];
i got working from this above line, i think this is alternative for ipad 3.2 from iphone 4.0 os