I get the following error immediately after clicking one of the buttons of the controller for interacting with the document, that is, copying, printing, etc.:
Launch Services: Registering unknown app identifier com.apple.mobilemail failed Launch Services: Unable to find app identifier com.apple.mobilemail
Here is the code that the interaction controller creates - a URL, etc. everything works, however delegate calls do not get to my controller, although I implemented delegate methods that are weird:
UIDocumentInteractionController *documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:fileURL]; documentInteractionController.delegate = self; [documentInteractionController presentOptionsMenuFromRect:self.view.bounds inView:self.view animated:YES];
source share