Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new in iPhone, I'm trying to open .doc file in the UIWebView, I wrote the following code

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];

the application doesn't crash, but it gives me the following:

EXCEPTION CPMessageException: (null)

and loads a blank page

Any Help in this issue?

share|improve this question

1 Answer

Check out these two SO posts: Reading Microsoft word document in iphone http://stackoverflow.com/questions/8849144/any-objective-c-library-to-parse-read-word-documents

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.