Bitmasking for introspection of Objective-C object pointers i
Posted small英
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bitmasking for introspection of Objective-C object pointers i相关的知识,希望对你有一定的参考价值。
修改方法1:
#pragma clang diagnostic push
#pragma clang diagnostic ignored"-Wdeprecated-objc-pointer-introspection"
BOOL workAroundMacOSXABIBreakingBug = (JK_EXPECT_F(((NSUInteger)object) &0x1)) ? YES : NO;
#pragma clang diagnostic pop
修改方法2:
"某数字" & 0x1 的时候, 代表取最低位,改成if(JK_EXPECT_F(((NSUInteger)object)%2))即可。
以上是关于Bitmasking for introspection of Objective-C object pointers i的主要内容,如果未能解决你的问题,请参考以下文章
Saltstack module introspect 详解