Reputation:
I have in my app this type of crash:
Line 144 is this:
if singleProfile == true
And variable declaration is this:
var singleProfile: Bool = false
I really don't understand why it crashes :(
Upvotes: 11
Views: 9856
Reputation: 181
I have seen EXC_BREAKPOINT UNKNOWN happens when you are unwrapping an optional but the value inside is nil. Please check unwrapping optionals code.
Upvotes: 9