I cloned a repo I'm working on from GitHub and I ran pod install
on it. The Xcode project has many dependencies (all of which are installed using Cocoapods), however, the only error I am getting is with AFNetworking
.
Here's the error I am getting :
Every other dependency is working and its setup exactly the way AFNetworking is, however, all the AFNetworking classes are not being recognized. Any help ?
Here's the podfile
:
platform :ios, '7.0'
target 'Name' do
pod 'AFNetworking'
pod 'MWPhotoBrowser'
pod 'STPopup'
pod 'KINWebBrowser'
pod 'JMImageCache'
pod 'Fabric'
pod 'Crashlytics'
end
target 'NameTests' do
end
target 'NameUITests' do
end