Thread 1: signal SIGABRT

http://imgur.com/a/RmS3U

Hello, I was programming an app for a tutorial in my Xcode development environment. The problem seems to be that I get this error (refer to link) and I can't figure out why. Please tell me what I can send that could help further investigate this problem, this is the second time it's come up. I've already referred to the other responses and none of them help my case.


Thank You.

Replies

SIGABRT
is triggered when someone calls
abort
, which typically happens when there’s an un-handled language exception. Often this is thrown by Objective-C code when you do something bogus, for example, if there’s an incorrect connection in your nib.

If you open Xcode’s console pane (View > Debug Area > Activate Console), does it show anything relevant?

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"