2013-07-24 55 views
0

我正在使用UIWebView在我的應用程序中顯示PDF。我正在使用它從支持文件加載PDF並顯示它。我的iOS應用程序中的PDF查看器是空白的。有任何想法嗎?

NSString *urlAddress = [[NSString alloc] init]; 

urlAddress = [[NSBundle mainBundle] pathForResource:@"MyFile" ofType:@"pdf"]; 

NSURL *url = [NSURL fileURLWithPath:urlAddress]; 
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; 
[self.pdfWebView loadRequest:requestObj]; 

當我運行應用程序時,UIWebView是空白的。

回答

0

看來你的MyFile.pdf沒有包含在這個包中。如果您在模擬器上運行它,您可以瀏覽到您的模擬器應用程序並右鍵單擊顯示內容。請使用[[NSFileManager defaultManager] fileExistsAtPath:url]進行檢查。

相關問題