我已經下載了PDF文件形式的網址並將其保存在磁盤上。我想在webView中查看同一個文件。我用:使用XCode從本地磁盤顯示UIWebView中的文件。
[self.navigationController pushViewController:self.fileViewController animated:YES];
我使用此代碼導航到其他視圖控制器。以下是我在viewDidLoad中的代碼:
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, 200, 200)];
NSString *path = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"pdf"];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
}
只要告訴我,我錯了。感謝預期。
您添加web視圖? –
我只是運行我之前發佈的代碼。我在我的initNib方法中創建它。 – iBug