I use UIDocumentInteractionControllerto exchange data with other applications on the device
self.docInteraction = [UIDocumentInteractionController interactionControllerWithURL:imageAttachFile];
self.docInteraction.delegate = self;
[self.docInteraction presentOpenInMenuFromRect:CGRectZero inView: self.view animated: YES ];
It works well, but it disappears after turning the device. What is the reason for this and how to fix it?
source
share