PopOverViewController 中的 UIActivityViewController 在 Swift 中崩溃

UIActivityViewController in a PopOverViewController Crashing in Swift

我有一个用于共享按钮的 UIActivityViewController。对于 iPhone,我将其作为常规 UIActivityViewController 使用,而对于 iPad,我将其置于 PopOverViewController 中。这是我的代码

let textToShare = "Check out this website!"

if let myWebsite = NSURL(string: "http://www.apple.com/") {
   let objectsToShare = [textToShare, myWebsite]
   let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)

   if let popUpVC = activityVC.popoverPresentationController {
      popUpVC.permittedArrowDirections = .Any
      popUpVC.sourceRect = share.frame
   }
   self.view?.window?.rootViewController?.presentViewController(activityVC, animated: true, completion: nil)
}

当我按下 iPad 上的共享按钮时,它会崩溃并显示 (lldb)。但是当我从一个视图中展示它时它可以工作但不在正确的位置。这是我目前使用的代码。

popUpVC.sourceView = self.view

试试这个,您必须检查您当前 运行 所在的设备是否响应 popoverPresentationController,因为 popoverPresentationController 是 iOS 8 的新设备,并且会在 [=15= 上崩溃] 7. 它在 iPhone 上也将为 nil,因为它仅在 iPad 上的 UIPopover 中。

let activityViewController = UIActivityViewController(activityItems: [myText, myUrl], applicationActivities: nil)

if activityViewController.respondsToSelector("popoverPresentationController") {
   // iOS8+
   view.presentViewController(activityViewController, animated: true, completion: nil)
   activityViewController.popoverPresentationController?.sourceView = view
} else {
   view.presentViewController(activityViewController, animated: true, completion: nil)
}