Xcode 7 - 不兼容的块指针类型
Posted
技术标签:
【中文标题】Xcode 7 - 不兼容的块指针类型【英文标题】:Xcode 7 - Incompatible block pointer types 【发布时间】:2015-09-22 19:04:09 【问题描述】:此代码在 Xcode 6 中运行良好,但现在无法在 Xcode 7 中编译。 任何想法如何解决以及为什么这是 Xcode 7 中的问题?
不兼容的块指针类型将'void (^)(SKSpriteNode *__strong, NSUInteger, BOOL *)'发送到'void (^ _Nonnull)(SKNode * _Nonnull __strong, NSUInteger, BOOL * _Nonnull)'类型的参数
[self.children enumerateObjectsUsingBlock:^(SKSpriteNode * node, NSUInteger idx,BOOL *stop)
float parallaxRatio = [(NSNumber *)node.userData[@"ParallaxRatio"] floatValue];
CGPoint childVelocity = CGPointMultiplyScalar(self.velocity, parallaxRatio);
CGPoint offset = CGPointMultiplyScalar(childVelocity, deltaTime);
node.position = CGPointAdd(node.position, offset);
];
【问题讨论】:
【参考方案1】:ios9 / Xcode7 似乎改变了几个界面。在这种情况下,您最容易修复它,输入[self.children enum
,然后按Ctrl+Space 并从列表中选择适当的方法。这将为您提供具有新块指针类型的代码片段,您可以将代码移入其中。
结果是这样的:(node
自动完成后是obj
,我只是重命名了)
[self.children enumerateObjectsUsingBlock:^(SKNode * _Nonnull node, NSUInteger idx, BOOL * _Nonnull stop)
float parallaxRatio = [(NSNumber *)node.userData[@"ParallaxRatio"] floatValue];
CGPoint childVelocity = CGPointMultiplyScalar(self.velocity, parallaxRatio);
CGPoint offset = CGPointMultiplyScalar(childVelocity, deltaTime);
node.position = CGPointAdd(node.position, offset);
];
【讨论】:
谢谢,现在编译!以上是关于Xcode 7 - 不兼容的块指针类型的主要内容,如果未能解决你的问题,请参考以下文章
iOS - AFNetworking GET 方法中不兼容的块指针类型
不兼容的块指针类型将“int (^)(__strong id, __strong id)”发送到“NSComparator”类型的参数