美文网首页Swift
Cocoapods 集成与初始化 - swift

Cocoapods 集成与初始化 - swift

作者: survivorsfyh | 来源:发表于2023-07-19 10:10 被阅读0次

    基于新的 swift 工程集成 cocoapods,操作过程与 object-c 类似, 如下操作基于已成功安装 cocoapods 的基础之上;

    首先,终端访问到工程根目录下

    cd xxx工程文件夹路径xxx
    

    其次,创建 Podfile 文件

    vim Podfile
    

    再其次,创建成功后工程根目录下会得到一个 Podfile 文件,通过终端直接编辑或者根目录下打开文件编辑均可

    # Uncomment the next line to define a global platform for your project
    platform :ios, '13.0'
    
    # Project name
    target 'IMedPhone' do
      # Comment the next line if you don't want to use dynamic frameworks
      use_frameworks!
      
      # Add your SDKs
      pod 'Alamofire' // 添加所需的 SDK 即可
    
      # Pods for IMedPhone
    
      target 'IMedPhoneTests' do
        inherit! :search_paths
        # Pods for testing
      end
    
      target 'IMedPhoneUITests' do
        # Pods for testing
      end
    
    end
    

    最后,Podfile 文件编辑完成后, 通过 Pod 尝试执行安装即可

    pod install
    

    如上操作基于 cocoapods 版本 1.12.1

    fyhsurvivors@survivors-deMacBook-Pro IMedPhone %  pod --version
    1.12.1
    

    [番外]若遇到如下异常可供参考 :)
    CocoaPods could not find compatible versions for pod "xxx":


    以上便是此次分享的全部内容,希望能对大家有所帮助!

    相关文章

      网友评论

        本文标题:Cocoapods 集成与初始化 - swift

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