我想从我的应用程序中导入一些文档,如PDF文件或另一个应用程序?有什么办法吗? 关于那个的任何链接?
感谢
答案 0 :(得分:0)
以下是允许该应用与itunes共享其文档文件夹的链接。 http://www.raywenderlich.com/1948/how-integrate-itunes-file-sharing-with-your-ios-app
或者,您可以使用应用程序中的代码将文件直接写入应用程序“documents”目录。如果这两件事都不是你想要的,你可以注册你的应用程序以支持文件格式?但这听起来并不像你想要的那样。
- (NSString*)DocumentsPath
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, TRUE);
return [paths objectAtIndex:0];
}
//not every class supports writeToFile
- (void)writeToFile:(id)object withFileName:(NSString*)filename
{
[object writeToFile:[[self DocumentsPath] stringByAppendingPathComponent:filename] atomically:TRUE];
}