In my app I use UIDocumentInteractionController to open a pdf document into acrobat reader (or any others viewers) but since iOS6 it doesn't work anymore.
I have try a lot of things, the last is from here :
UIDocumentInteractionController *docController = [[UIDocumentInteractionController alloc]init];
docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:documentsDirectory]];
docControler.UTI = @"com.adobe.pdf";
docController.delegate = self;
CGrect navRect = self.view.frame;
[docController presentOpenInMenuFromRect:navRect inView:self.view animated:YES];
When this code is running, my app totally freeze. I have try with "presentOpenInMenuFromBarButtonItem" but I have the same issue.