0

Installed three pods but for some reason can't get it to work I tried reinstalling, updating, deintegrating but nothing does it. I get the following errors. Tried creating the folders manually but the Linker Error remains always

Podfile:

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'

target 'Clima' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for Clima

pod 'SwiftyJSON'
pod 'Alamofire'
pod 'SVProgressHUD'

end

error error2

Dev0urCode
  • 83
  • 10

1 Answers1

3

The frameworks aren't being built. Just open {Yourproject}.xcworkspace generated after adding cocoapods instead of {Yourproject}.xcodeproj - that should help.

Anton Malyshev
  • 8,686
  • 2
  • 27
  • 45
  • It was that easy ! Thanks ! first time using pods.. Pods always generate a new file to use instead of Xcode project ? – Dev0urCode Sep 08 '17 at 21:33