Reputation: 69
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:
Build Phases My Build Phases
Upvotes: 0
Views: 2743
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)
Upvotes: 1
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