I want to use this Objective C pod in my Swift project : EAIntroView
Cocoapods 0.36 and above introduces the use_frameworks! instruction which implies that the bridging header is not required for importing Objective-C pods in Swift.
but I can't import EAIntroView
and use the code of the Library
Here is my pod file
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
target 'PROJ' do
pod 'Koloda', '~> 2.0.3'
pod 'EAIntroView'
end
target 'PROJTests' do
end
target 'PROJUITests' do
end