使用自定义扩展程序在iPhone中保存pdf文件

时间:2012-04-09 12:29:08

标签: iphone objective-c ios pdf xcode4.2

我想将.pdf文件保存在iphone的文档目录中,但有一些客户端扩展名。 即Test.pdf文件存储在文档目录中,作为Test.pdf1。而当我检索该pdf文件时,它将以适当的pdf格式显示我。 请有任何想法的人请回复。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

 NSString *oldPath = @".../123.pdf";
NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"123.pdf1"];
[[NSFileManager defaultManager] moveItemAtPath:oldPath toPath:newPath error:nil];