There is currently an issue where I get this error when calling "setUserPropertyString"
[56051:22661535] -[__NSDictionaryM objectAtIndexedSubscript:]: unrecognized selector sent to instance 0x7f85e6777e20
I get around the error by setting the + (class symbol) in front of the method. But I dont know objective-c enough to know better or why this works. So could someone take a look and point out my error / issue, thanks.
There is currently an issue where I get this error when calling "setUserPropertyString"
[56051:22661535] -[__NSDictionaryM objectAtIndexedSubscript:]: unrecognized selector sent to instance 0x7f85e6777e20
I get around the error by setting the + (class symbol) in front of the method. But I dont know objective-c enough to know better or why this works. So could someone take a look and point out my error / issue, thanks.
+(void)setUserPropertyString:(id)args{ ENSURE_UI_THREAD_1_ARG(args); ENSURE_ARG_COUNT(args, 1);
}