我提出了一个像这样的UIDocumentInteractionController:
self.documentInteractionController = [[UIDocumentInteractionController alloc] init];
_documentInteractionController.delegate = self;
_documentInteractionController.UTI = kUTTypeMPEG4;
_documentInteractionController.URL = aURL;
dispatch_async(dispatch_get_main_queue(), ^(){
[_documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:view animated:YES];
});
生成的UIDocumentInteractionController有大量重复的条目。
e.g。 " WhatsApp的"和#34;复制到WhatsApp"," Slack"和"复制到Slack",...
我有什么配置可以避免这种情况吗?
[UIDocumentInteractionController presentOpenInMenuFromRect:]
[UIDocumentInteractionController presentOptionsMenuFromRect:]
通过仅显示能够打开文件的应用程序来阅读我在presentOpenInMenuFromRect:
看来的文档可能更受限制 - 但这两种方法都显示相同的副本。