按下时没有检测到按钮?

时间:2018-03-17 04:58:42

标签: swift

这是我目前的代码:

import UIKit
import LocalAuthentication



class ViewController: UIViewController {
    @IBAction func sendHelp(sender: UIButton){
        let alert = UIAlertController(title: "It worked", message: "yey", preferredStyle: UIAlertControllerStyle.alert)
        alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
        self.present(alert, animated: true, completion: nil)
    }
}

按下按钮时没有检测到。我不能在我的代码中使用segues(control + drag),所以这可能是Xcode的一个问题。我该怎么办?

1 个答案:

答案 0 :(得分:0)

如果你无法控制 - 从故事板中拖动,通常你没有正确设置viewcontroller的类 - 在storyboard中选择视图,然后将类设置为“viewcontroller”。

还要确保它已正确链接到按钮。

enter image description here