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
1
  • What do you mean "You can't import"? Is there any errors from cocoapods or Xcode? Commented Oct 29, 2015 at 22:46

1 Answer 1

0

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.