class AppDelegate: UIResponder, UIApplicationDelegate {
の右にエラーコードで
Thread 1: signal SIGABRT とあり、ボタンを押すとそこで止まってしまいxcodeに戻ってしまいます。
ネットで調べてキャッシュの消去みたいなことはしたのですが、それでも解決しませんでした。
原因は何が考えられるかわかりやすく教えていただけたら幸いです。
Teratailを「Thread 1: signal SIGABRT」で検索すると沢山同じ問題と回答が出ます。右下のコンソールのメッセージがより詳細なエラーを説明しているのでその情報を追加してもらえると的確な解答を得られる可能性が高まります。
2019-12-28 12:03:20.059480+0900 no stress life[34694:1655373] -[no_stress_life.ViewController start]: unrecognized selector sent to instance 0x7fbf3e70afa0
2019-12-28 12:03:20.068861+0900 no stress life[34694:1655373] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[no_stress_life.ViewController start]: unrecognized selector sent to instance 0x7fbf3e70afa0'
*** First throw call stack:
(
0 CoreFoundation 0x000000010f2278db __exceptionPreprocess + 331
1 libobjc.A.dylib 0x000000010e7caac5 objc_exception_throw + 48
2 CoreFoundation 0x000000010f245c94 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 UIKitCore 0x0000000112a7e235 -[UIResponder doesNotRecognizeSelector:] + 287
4 CoreFoundation 0x000000010f22c623 ___forwarding___ + 1443
5 CoreFoundation 0x000000010f22e418 _CF_forwarding_prep_0 + 120
6 UIKitCore 0x0000000112a53624 -[UIApplication sendAction:to:from:forEvent:] + 83
7 UIKitCore 0x00000001124a88d5 -[UIControl sendAction:to:forEvent:] + 67
8 UIKitCore 0x00000001124a8bf2 -[UIControl _sendActionsForEvents:withEvent:] + 450
9 UIKitCore 0x00000001124a7ba8 -[UIControl touchesEnded:withEvent:] + 583
10 UIKitCore 0x0000000112a8c4e6 -[UIWindow _sendTouchesForEvent:] + 2547
11 UIKitCore 0x0000000112a8dbca -[UIWindow sendEvent:] + 4079
12 UIKitCore 0x0000000112a6c30e -[UIApplication sendEvent:] + 356
13 UIKitCore 0x0000000112b3c2b3 __dispatchPreprocessedEventFromEventQueue + 3232
14 UIKitCore 0x0000000112b3ebd9 __handleEventQueueInternal + 5911
15 CoreFoundation 0x000000010f18edb1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
16 CoreFoundation 0x000000010f18e633 __CFRunLoopDoSources0 + 243
17 CoreFoundation 0x000000010f188cef __CFRunLoopRun + 1231
18 CoreFoundation 0x000000010f1884d2 CFRunLoopRunSpecific + 626
19 GraphicsServices 0x00000001174e22fe GSEventRunModal + 65
20 UIKitCore 0x0000000112a51fc2 UIApplicationMain + 140
21 no stress life 0x000000010dee780b main + 75
22 libdyld.dylib 0x00000001115c0541 start + 1
23 ??? 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
右下にあった表示です。
僕にはどういう意味なのか理解できないので、教えていただけたらと思います。
重要な情報です。それを質問そのものに追記するともっと良いと思います。
エラーはボタンにアサインしているアクションが違っているという事じゃないかと思われます。
そうでしたか。
教えていただき有難うございます。
ボタンのファンクションの中にコードは書いていないのですが、アクションが違うというのはどういう意味でしょうか。
ボタンを消したり、コピーして貼り付けたりしていてこのエラーが起きてしまったので、それが原因だと思っていたのですが、どう修正すればいいのかわかりません。
お答えいただいたのにまた質問で返すような形で申し訳ございません。
回答1件
あなたの回答
tips
プレビュー