0

私はiPhoneが初めてで、UIWebViewで.docファイルを開こうとしています。次のコードを書きました

NSString *urlAddress = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"%@.doc", docName] ofType:nil]; 

NSLog(@"in search the document url address: %@", urlAddress);

NSURL *url  = [NSURL fileURLWithPath:urlAddress];
NSURLRequest *requestObj  = [NSURLRequest requestWithURL:url];

[_webView loadRequest:requestObj];

アプリケーションはクラッシュしませんが、次のようになります。

EXCEPTION CPMessageException: (null)

空白のページを読み込みます

この問題のヘルプはありますか?

4

1 に答える 1

0

次の 2 つの SO 投稿を確認してください: Reading Open-XML documents in IOS any Objective-c library to parse/read word documents?

于 2012-08-11T14:14:09.873 に答える