Mac OS 10.12 xcode 8.1
We are trying to install pod like
platform :ios, '8.0'
target 'ProjectName' do
pod 'ARSafariActivity', '~> 0.0'
pod 'FFBadgedBarButtonItem', '~> 1.0'
pod 'MMDrawerController', '~> 0.5'
pod 'MMProgressHUD', '~> 0.2'
pod 'MMSpreadsheetView', '~> 0.0'
pod 'Mantle', '~> 1.5'
pod 'Masonry', '~> 0.5'
pod 'NHAlignmentFlowLayout', '~> 0.1'
pod 'NMRangeSlider', '~> 1.1'
pod 'PBWebViewController', '~> 0.2'
pod 'SZTextView', '~> 1.1'
pod 'AAPLAdvancedCollectionView', :git => 'https://github.com/zwaldowski/AAPLAdvancedCollectionView.git', :tag => 'v1.0.11'
end
target 'ProjectNameTests' do
pod 'Kiwi', '~> 2.3'
pod 'OHHTTPStubs', '~> 4.0'
end
Giving error lexical and preprocessor issue. Mantle.h file not found.
We tried with iOS - Build fails with CocoaPods cannot find header files this still not working.
You should specify to use frameworks if you are not planning to add bridging file between swift and Objective - c
Using Pods without Bridge file
update your pod file to
Now you dont need to import .h files, it gets imported as modules :)
I hope you can see
use_frameworks!
in updated pod file :)Using Pods with Bridge file (if you dont want to deal with frameworks but work only with Objective - C files directly)
Create a .h file with name
YourAppName-Bridging-header.h
open it and add all the Objective - C files you want to import for exampleThats it now you can use it in any of the files without worrying to import them again and again.