"_ isPlatformVers ionAtLeast", referenced f rom: 问题解决

问题:

问题图片

1.可能是对方xcode版本低于9.0无法识别 @available(iOS 11,*) 判断手机系统

2.如果你用xcode11打包sdk,别人使用xcode10运行项目加入sdk 也会抱着个错误

解决:

1.将@available(iOS 11,*)判断替换成 [UIDevice currentDevice].systemVersion  >= 11.0 

2.把xcode回退到xcode10 版本重新打包

你可能感兴趣的:("_ isPlatformVers ionAtLeast", referenced f rom: 问题解决)