0

I want to use this Objective C pod in my Swift project : EAIntroView

I found in this SO answer :

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
Community
  • 1
  • 1
iOSGeek
  • 5,115
  • 9
  • 46
  • 74

1 Answers1

0

Cocoapods compiled it as framework, try to use @import EAIntroView