IOS 构建失败 "ARC Semantic Issue"

IOS Build fails with "ARC Semantic Issue"

努力找出问题所在我已经谷歌搜索了一段时间,但一直无法弄清楚构建失败并出现此错误的原因。

还尝试了清理和重建。完成了 pod 安装和 pod 更新,但似乎没有解决任何问题。

希望得到一些关于从这里继续前进的建议。

createFrameAtIndex:source:scale:preserveAspectRatio:thumbnailSize: 可能声明为实例方法,但您是直接在 class 上调用它,而不是在 class.

的实例上调用它

确保它具有正确的声明,+ (UIImage*)createFrameAtIndex:... 用于 class 方法,或 - (UIImage*)createFrameAtIndex:... 用于实例方法。

查看 Error "No known class method for selector 'Hello:'" in custom-made framework 详细信息。