zoukankan      html  css  js  c++  java
  • swift pod 第三方库异常的处理

    Xcode8—Swift开发使用Cocoapods引入第三方库异常处理方法

    参考:  http://www.jianshu.com/p/23f13be525a0

    //podfile文件如下

     

    platform :ios, '10.0'

    use_frameworks!

     

    target 'testSWift' do

     

    pod 'Alamofire', '~> 4.4.0'

     

    end

     

     

    post_install do |installer|

        installer.pods_project.targets.each do |target|

            target.build_configurations.each do |config|

                config.build_settings['SWIFT_VERSION'] = '3.0'

            end

        end

    end

     

     

  • 相关阅读:
    stm32 IO模式
    stm32的ADC
    bsp
    stm32的硬件调试设置
    RTC实时时钟
    快手2019笔试题 “回文子串" 解题思路
    C++内存修改器开源代码
    FC游戏修改教程(hack)小白文。
    GLFW+GLEW搭建opengl环境(备忘)
    8086 IO读写操作
  • 原文地址:https://www.cnblogs.com/daxueshan/p/7117443.html
Copyright © 2011-2022 走看看