swift pod 第三方库异常的处理

Posted Da雪山

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

 

 

以上是关于swift pod 第三方库异常的处理的主要内容,如果未能解决你的问题,请参考以下文章

swift 使用pod管理

快速用上 Swift 静态库

swift-bridge时遇到的一些小坑记录

Swift XML解析库 - SwiftyXMLParser

iOS 静态库和动态库打包framework流程(纯swift版/swift、OC混编版)

如何使用原生崩溃报告在 Swift 4 中实现异常/错误处理?