I am getting the following error after installing the pop library using CocoaPods.
***ld: library not found for -lPods-MyApp-pop
clang: error: linker command failed with exit code 1 (use -v to see invocation)***
My Podfile looks like this
hash Uncomment this line to define a global platform for your project
hash platform :ios, '7.0'
target 'MyApp' do pod 'pop', '~> 1.0'
end
target 'MyAppTests' do
end
This is my first project using CocoaPods, any help would be appreciated.