美文网首页iOS一些bugiOS
Undefine symbols __isPlatformVer

Undefine symbols __isPlatformVer

作者: Ev0 | 来源:发表于2019-09-26 18:19 被阅读0次

    使用 @available 导致旧版本 Xcode 编译出错。
    在 Xcode 11 的 SDK 工程的代码里面使用了 @available 判断当前系统版本,打出来的静态库放在低版本 Xcode 中编译,会出现一下错误:

    Undefine symbols for architecture i386:
        "__isPlatformVersionAtLeast", referenced from:
            ...
    ld: symbol(s) not found for architecture i386
    

    从错误信息来看,是 __isPlatformVersionAtLeast 方法没有具体的实现,但是工程里根本没有这个方法。实际测试无论在哪里使用@available ,并使用 Xcode 11 打包成动态库或静态库,把打包的库添加到 Xcode 10 中编译都会出现这个错误,因此可以判断是 iOS 13 的 @available 的实现中使用了新的 api。

    • 解决方案
      如果你的 SDK 需要适配旧版本的 Xcode,那么需要避开此方法,通过获取系统版本来进行判断:
    if ([UIDevice currentDevice].systemVersion.floatValue >= 13.0) {
        ...
    }
    

    坑的一批

    相关文章

      网友评论

        本文标题:Undefine symbols __isPlatformVer

        本文链接:https://www.haomeiwen.com/subject/kvenuctx.html