LibSwiftCore.dylib _hidden, can't figure out what it is?

I got a crash message with the following enter image description here

But I can't figure out what caused this, since I can't go to the source?

+3


source to share


1 answer


You want to look at the last stack of the stack for the line of code you wrote. Based on swift_dynamicCastClassUnconditional

, it looks like you had a string as!

and the cast failed.



The line you are pointing to is part of the code that is called after an error is detected.

0


source







All Articles