Thread 1: signal SIGABRT Xcode 6.1

前端 未结 3 1542
无人及你
无人及你 2020-12-21 21:16

I am running an application and in the AppDelegate class I am getting the error Thread 1: signal SIGABRT on the line stating class AppDelegate: UIResponder, UIApplicat

3条回答
  •  时光说笑
    2020-12-21 21:32

    Looks like you have a lingering connection to a no-longer-existent outlet. Perhaps you deleted a textField that you previously set up?

    Ctrl-/right-click on the File's Owner in the Xcode editor, look for a warning triangle. Clear that out (by deleting the connection or re-connecting it to the proper outlet) and you'll likely be good.

    enter image description here

提交回复
热议问题