开发者

isMemberOfClass problem

开发者 https://www.devze.com 2023-01-12 09:44 出处:网络
I\'m trying to log if an object in my mutable array is a member of the class NSString. Here is my code:

I'm trying to log if an object in my mutable array is a member of the class NSString. Here is my code:

 id obj = [mutArr objectAtIndex:1];
 BOOL classMem = [obj isMemberOfClass:[NSString class]];
 NSLog(@"%@", classMem);

Instead of printing YES or NO, I get the output (null). Can you please tell me why this i开发者_C百科s the case?

Thank you!!


BOOL is not an object, so shouldn't be logged with %@. Log it with the format string %d instead. Or, if you want more legible output, you can use:

NSLog(@"%@", classMem ? @"YES" : @"NO");
0

精彩评论

暂无评论...
验证码 换一张
取 消