本周我开始使用swift进行编程,并尝试在我的应用中创建一个简单的导航栏。这不是我第一次遇到这个错误,也不知道什么可以丢失。如果我没有弄错的话,我会将ui中的所有内容与代码相关联,但输出结果如下:
libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
可能是什么错误?感谢
import UIKit
class ViewController: UIViewController {
var t = Timer()
@IBAction func hi(_ sender: Any) {
print("Camera button pressed")
t.invalidate()
}
func processTimer() {
print("1 second has passed")
}
override func viewDidLoad() {
super.viewDidLoad()
t = Timer.scheduledTimer(timeInterval: 1, target: self, selector: Selector(("processTimer")), userInfo: nil, repeats: true)
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:3)
问题在于minus10Button
与许多IBAction相关联 - 其中一些并不存在。因此,右键单击Interface Builder中的minus10Button
,删除旧的和不相关的链接,解决问题。