nose if you are also having problems to convert to Swift 3 especially with frameworks like Alamofire and others, I miss thousands of errors impossible to solve, do not know how you are facing these problems?
nose if you are also having problems to convert to Swift 3 especially with frameworks like Alamofire and others, I miss thousands of errors impossible to solve, do not know how you are facing these problems?
In my case what I did was the following:
1) Delete my pod file.
2) I created a new pod file using Pod init from the terminal
3) Use this structure:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'MiApp' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for YoVendoSaldo
pod 'Alamofire', '~> 4.0'
pod 'SVProgressHUD'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
end