gpt4 book ai didi

iphone - 为什么无法在 uiwebview 中打开 .docx 文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:49:45 27 4
gpt4 key购买 nike

我是 iphone 的新手,我正在尝试在 UIWebView 中打开 .docx 文件

我使用了这段代码:

NSString *urlAddress = [[NSBundle mainBundle] pathForResource:docName 
ofType:@"docx"];

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

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

[_webView loadRequest:requestObj];

还有这段代码:

NSData *myData = [NSData dataWithContentsOfFile:docName];
[_webView loadData:myData MIMEType:@"application/vnd.ms-word"
textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:@""]];

而且我确定资源文件夹中的文件,但是当运行时它给了我一个异常(exception)并在 main.m 中说

int main(int argc, char *argv[])
{
@autoreleasepool {
// here it tells me that (Thread 1: signal SIGKILL)
return UIApplicationMain(argc, argv, nil, NSStringFromClass([MFAppDelegate class]));
}
}

有什么帮助吗??

最佳答案

根据 http://developer.apple.com/library/ios/#qa/qa1630/_index.html#//apple_ref/doc/uid/DTS40008749您根本无法打开 .docx 文件,只能打开 .doc 文件,这可能是您的问题

关于iphone - 为什么无法在 uiwebview 中打开 .docx 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11820008/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com