这是我目前的代码:
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的一个问题。我该怎么办?