【发布时间】:2015-09-09 11:38:17
【问题描述】:
我想将 pdf 附加到邮件中,但是当我在 iOS 8 中运行时出现以下错误。当我打开活动时
Presenting view controllers on detached view controllers is discouraged.
当我点击邮件时,我收到了
Warning: Attempt to present <MFMailComposeViewController:> on <> whose view is not in the window hierarchy!
我正在使用以下代码,
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];
不显示窗口。
【问题讨论】:
标签: ios ipad uiactivityviewcontroller