Robert
Robert

Reputation: 69

libc++abi.dylib: terminating with uncaught exception of type NSException - SpriteKit

I am creating a game, where I run my app once and I get this type error:

libc++abi.dylib: terminating with uncaught exception of type NSException

Here is the image:

The Image

Build Phases My Build Phases

Upvotes: 0

Views: 2743

Answers (2)

Cons Bulaquena
Cons Bulaquena

Reputation: 2113

I have faced the same issue.

Check the name of the Storyboard identifier inside the Identity Inspector and make sure you use the same name.

(A good practice is to use the class name as the identifier)

enter image description here

Upvotes: 1

Arasuvel
Arasuvel

Reputation: 3012

If your using latest Xcode remove the library libc++abi.dylib from build phase and add libc++abi.tbd

Hopes this will fix the issue.

Upvotes: 1

Related Questions