IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Xcode_xcode_13.0导入第三方组件Kingfisher报错解决 -> 正文阅读

[移动开发]Xcode_xcode_13.0导入第三方组件Kingfisher报错解决

  • Debug模式下运行无错误、当切换为Release模式进行打包是会进行报错

报错提示大致如下,截取其中一段,均是由于SwiftUI导致

~/Merchant/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift:51:23: error: cannot find type 'Binding' in scope
        var isLoaded: Binding<Bool>
                      ^~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift:57:80: error: cannot find type 'Binding' in scope
        init(source: Source?, options: KingfisherOptionsInfo? = nil, isLoaded: Binding<Bool>) {
                                                                               ^~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift:69:41: error: cannot find type 'Binding' in scope
        init(source: Source?, isLoaded: Binding<Bool>) {
                                        ^~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift:110:56: error: cannot find 'Animation' in scope
                                    .map { duration in Animation.linear(duration: duration) }
                                                       ^~~~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift:111:33: error: cannot find 'withAnimation' in scope
                                withAnimation(animation) { self.loaded = true }
                                ^~~~~~~~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift:32:11: error: cannot find type 'Image' in scope
extension Image {
          ^~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift:59:83: error: cannot find type 'Binding' in scope
    public init(source: Source?, options: KingfisherOptionsInfo? = nil, isLoaded: Binding<Bool> = .constant(false)) {
                                                                                  ^~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift:75:72: error: cannot find type 'Binding' in scope
    init(_ url: URL?, options: KingfisherOptionsInfo? = nil, isLoaded: Binding<Bool> = .constant(false)) {
                                                                       ^~~~~~~
~/Merchant/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift:85:44: error: cannot find type 'Binding' in scope
    public init(source: Source?, isLoaded: Binding<Bool> = .constant(false)) {
                                           ^~~~~~~
  • 解决方案:
    Podfile文件中添加以下函数,然后运行pod install
platform :ios, '11.0'
use_frameworks!
install! 'cocoapods', :disable_input_output_paths => true
inhibit_all_warnings!

flutter_application_path = '../../merchant_flutter/'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')

target 'Merchant' do
  
  pod 'Alamofire', '~> 5.4.3' #网络请求
  pod 'RxSwift', '~> 6.2.0' #响应式编程
  pod 'Kingfisher', '~> 6.3.0' #网络图片加载,SDWebImage的swift版本
  
  
  ## ==============Flutter ==============
  install_all_flutter_pods(flutter_application_path)
  ## ==============Flutter ==============
  
  post_install do |installer|
  	#调用移除函数
    remove_swift_ui()  
    installer.pods_project.targets.each do |target|
      #if target.name =="App" || target.name =="Flutter"
      target.build_configurations.each do |config|
        config.build_settings['ENABLE_BITCODE'] ='NO'
        config.build_settings['ENABLE_STRICT_OBJC_MSGSEND'] = 'NO'
        config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
        
        #end
      end
    end
  end
end
# 添加以下函数
def remove_swift_ui
  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
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-23 12:37:23  更:2021-10-23 12:37:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 1:07:43-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码