I am getting the following error:
-[__NSCFBoolean isEqualToString:]: unrecognized selector sent to instance 0x56bb95c
Is it possible to track down what's the variable responsible of this error? The stack call is not helping me in this scenario.
I am getting the following error:
-[__NSCFBoolean isEqualToString:]: unrecognized selector sent to instance 0x56bb95c
Is it possible to track down what's the variable responsible of this error? The stack call is not helping me in this scenario.
You have a BOOL
type while you are considering it as NSString
and trying to compare with some other string by isEqualToString:
[__NSCFBoolean isEqualToString:]
....^^^^^^^^^