received data from JSON, which is looks like:
{ myself = 1; \"id\" = 123; }
and I put it into a NSDictionary *messageDic, I also define
__NSCFBoolean is a private class that is used in NSNumber class cluster. To extract appropriate value from it you need to use methods from NSNumber class, -boolValue in your case:
-boolValue
BOOL isMyself = [[messageDic objectForKey:@"myself"] boolValue];