我正在尝试使用这个片段来做一个简单的动画:
[UIView animateWithDuration:2.0
delay:0.0
options: UIViewAnimationOptionCurveEaseInOut
animations:^{
[self.view setAlpha:0.7f];
}
completion:^(BOOL finished){
if(finished) NSLog(@"Finished !!!!!");
// do any stuff here if you want
}];
但是 XCode 给我一个错误说明:
"Incompatibile block pointer types sending 'void(^)(uint_8t)' to parameter of type 'void(^)(BOOL)'".
如果我尝试将“BOOL”更改为“bool”,则代码在 iPad Air 上编译时可以正常工作,但是当我断开 iPad 并尝试模拟器时,我会收到相同的错误,但类型不同:
"Incompatibile block pointer types sending 'void(^)(bool)' to parameter of type 'void(^)(BOOL)'".
在我看来这很奇怪,因为它是一个似乎适用于许多人的代码片段,并且是一段相当标准的代码。什么可能导致这种行为?
附:我还在 - (void)viewWillDisappearbool)animated 方法中收到不兼容类型的警告。当我连接 iPad 时它们也会消失,并在断开连接时再次出现。
编辑:---- 这段代码甚至会导致错误:
[searchArray enumerateObjectsUsingBlock:^(NSString *key, NSUInteger idx, BOOL *stop)
{
address = addresses[key];
if(address) *stop = YES;
} ];
也在 BOOL 字段上。并且错误是相同的,相互冲突的参数类型。
BOOL 是一种不同的类型,具体取决于您编译为 32 位还是 64 位。使用了不同的类型,例如 Bool、bool、Boolean 以及可能还有其他类型 - 确保在任何地方都使用相同的类型。
插入您的设备意味着将为您的设备而非模拟器编译代码,因此这可能会在 32 位和 64 位之间切换并触发问题。
我还会检查代码中某处是否存在 typedef 或 #define for BOOL。双击代码中的 BOOL,右键单击并“显示定义”。
关于ios - 当设备未连接时,Xcode 在 bool 上编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31337209/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |