升级到Xcode13.1后编译打包Kingfisher报错问题

2021-12-13  本文已影响0人  Mr_zhangjin

1. 删除 Kingfisher里面含有swiftUI的代码,在podFile里 直接拷贝下面复制到 Target ... end  的 end 之前

pre_install do |installer|

    remove_Kingfisher_swiftui() //方法名

  end

2.  拷贝下面代码放到 上面 end 的后面

def remove_Kingfisher_swiftui   //方法名

    # 解决 xcode13 Release模式下SwiftUI报错问题

  system("rm -rf ./Pods/Kingfisher/Sources/SwiftUI")

  code_file = "./Pods/Kingfisher/Sources/General/KFOptionsSetter.swift"

  code_text = File.read(code_file)

  code_text.gsub!(/#if canImport\(SwiftUI\) \&\& canImport\(Combine\)(.|\n)+#endif/,'')

  system("rm -rf " + code_file)

  aFile = File.new(code_file, 'w+')

  aFile.syswrite(code_text)

  aFile.close()

end

上一篇下一篇

猜你喜欢

热点阅读