Reputation: 83
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
Upvotes: 0
Views: 57
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