gpt4 book ai didi

iphone - 如何在iPhone上保存带空格的文件名

转载 作者:行者123 更新时间:2023-12-03 20:53:32 24 4
gpt4 key购买 nike

我正在尝试使用

将文件保存在文档目录中
NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,     NSUserDomainMask, YES) lastObject];
NSString *filename=[NSString stringWithFormat:@"abc 1.pdf",];
NSString *pdfLocation = [documentDirectory stringByAppendingPathComponent:filename];

我正在使用 WebView 打开此文件

NSURL *url = [NSURL URLWithString:pdfLocation];
NSURLRequest *urlRequest = [[NSURLRequest alloc] initWithURL:url];
[self.webView loadRequest:urlRequest];
[urlRequest release];

如果文件名有空格,则会失败。我应该如何保存文件以便保留文件名中的空格。

最佳答案

在这种情况下,

UIWebView 需要一个文件 URL。将行更改为:

NSURL *url = [NSURL fileURLWithPath:pdfLocation];

关于iphone - 如何在iPhone上保存带空格的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7593030/

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