我正在尝试在我的应用程序中开发运营商表单,这里我正在尝试在我的应用程序中实现简历上传(文件上传)。这里我正在为开放文件管理器编写代码,但我不知道如何选择pdf文件在文件管理器中。请任何一个帮助完成此。提前谢谢。
UIButton *button = (UIButton *)sender;
NSURL *URL = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"pdf"];
if (URL) {
// Initialize Document Interaction Controller
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:URL];
//Configure Document Interaction Controller
[self.documentInteractionController setDelegate:self];
// Present Open In Menu
[self.documentInteractionController presentOpenInMenuFromRect:[button frame] inView:self.view animated:YES];
}
这是我用于打开文件管理器的代码。
答案 0 :(得分:0)
试试这个
NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *docsDirectory = [path objectAtIndex:0];
NSString *filePath = [docsDirectory stringByAppendingPathComponent:@“sample.pdf"];
NSURL *pdfUrl = [NSURL fileURLWithPath:filePath];
pdf = CGPDFDocumentCreateWithURL((CFURLRef)pdfURL);