I want to attach pdf to the mail but I am getting following error when i run in iOS 8. when i open activity
Presenting view controllers on detached view controllers is discouraged.
When i click on mail, i am getting
Warning: Attempt to present <MFMailComposeViewController:> on <> whose view is not in the window hierarchy!
I am using the following code to do so,
activityVC = [[UIActivityViewController alloc]initWithActivityItems:PDFDataArray applicationActivities:nil];
_popup = [[UIPopoverController alloc] initWithContentViewController:activityVC];
[_popup presentPopoverFromRect:CGRectMake(self.view.frame.size.width/2, self.view.frame.size.height/4, 0, 0)inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
Not displaying a window.