そのため、アプリで次の作業を行っています。呼び出されると、リソースファイルがKeynoteにコピーされ、正常に開きます。
documentController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
documentController.delegate = self;
[documentController retain];
[documentController presentPreviewAnimated:YES];
[documentController presentOpenInMenuFromRect:CGRectMake(500,-200 , 200, 200) inView:self.view animated:YES];
問題は、コードがトリガーされるたびに、ファイルがKeynoteに再度コピーされ、本質的に複製が作成されることです。
デュープの作成を回避する方法はありますか?
ありがとう