Dev0urCode
Dev0urCode

Reputation: 83

Linker Issue Xcode Cocoapods

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

Upvotes: 0

Views: 57

Answers (1)

Anton Malyshev
Anton Malyshev

Reputation: 8851

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

Upvotes: 3

Related Questions