isMemberOfClass问题

发布于 2024-09-15 05:14:44 字数 300 浏览 8 评论 0原文

我正在尝试记录可变数组中的对象是否是 NSString 类的成员。这是我的代码:

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

我得到的输出是 (null),而不是打印 YESNO。您能告诉我为什么会出现这种情况吗?

谢谢你!!

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 is the case?

Thank you!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑忘罢 2024-09-22 05:14:45

BOOL 不是对象,因此不应使用 %@ 进行记录。使用格式字符串 %d 来记录它。或者,如果您想要更清晰的输出,您可以使用:

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

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");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文