-1

我想将 .pdf 文件保存在 iphone 的文档目录中,但需要一些自定义扩展。即Test.pdf 文件作为Test.pdf1 存储在documents 目录中。而且当我检索那个 pdf 文件时,它会以正确的 pdf 格式显示给我。请任何对此有想法的人,然后请回复。提前致谢。

4

1 回答 1

1
 NSString *oldPath = @".../123.pdf";
NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"123.pdf1"];
[[NSFileManager defaultManager] moveItemAtPath:oldPath toPath:newPath error:nil];
于 2012-04-09T12:43:33.757 回答