问题 I'm trying to add a button in order to share some sentences in Twitter, Facebook... etc. It all works on all iPhone models but simulator crash with an iPad. This is my code: @IBAction func shareButton(sender: AnyObject) { frase = labelFrases.text! autor = labelAutores.text! var myShare = "\(frase) - \(autor)" let activityVC: UIActivityViewController = UIActivityViewController(activityItems: [myShare], applicationActivities: nil) self.presentViewController(activityVC, animated: true,