Problems converting to Swift 3 [closed]

0

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?

    
asked by Alejandro 15.09.2016 в 17:19
source

1 answer

1

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
    
answered by 06.10.2016 в 00:57