我用来UIDocumentInteractionController
与设备上的其他应用程序共享数据
self.docInteraction = [UIDocumentInteractionController interactionControllerWithURL:imageAttachFile];
self.docInteraction.delegate = self;
[self.docInteraction presentOpenInMenuFromRect:CGRectZero inView: self.view animated: YES ];
它工作得很好,但它在设备旋转后消失。它的原因是什么以及如何解决这个问题?