Xcode 6.1.1 - 我已經用一個按鈕編寫了小應用程序。我在ViewController.swift中編寫了IBAction
方法showMessage()
。當我試圖連接按鈕和視圖控制器。故事板中的視圖控制器圖標未顯示「已發送事件」---> showMessage方法。無法鏈接Xcode 6.1.1中的無爲和視圖控制器
@IBAction func showMessage() {
let alertController = UIAlertController(title: "Welcome to My First App", message: "Hello World", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alertController, animated: true, completion: nil)
}
請顯示您的'IBAction'方法的代碼。 – vacawama 2014-12-13 11:38:51
你確定你將視圖控制器設置爲故事板中的類嗎? – 2014-12-13 11:48:18
@IBAction func showMessage(){ let alertController = UIAlertController(title:「Welcome to My First App」,message:「Hello World」,preferredStyle:UIAlertControllerStyle.Alert) alertController.addAction(UIAlertAction(title:「OK」,風格:UIAlertActionStyle.Default,處理程序:無)) self.presentViewController(alertController,animated:true,completion:nil) } – 2014-12-13 12:11:44