I am using xcode 8 for development and cocoapods 1.0.1 for frameworks. After installing frameworks, I couldn't build my project. I am getting "ld: framework not found" error. I am using the following lines in my pod file:
# Uncomment this line to define a global platform for your projectplatform :ios, '9.0'target 'Sample' douse_frameworks!pod 'MBProgressHUD', '~> 0.9'pod 'TPKeyboardAvoiding', '~> 1.2'pod 'SDWebImage', '~> 3.7'pod 'UIActivityIndicator-for-SDWebImage'pod 'UITextView+Placeholder', '~> 1.2'pod 'Alamofire', '~> 4.0'endpost_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.0' end endend