Reputation: 197
I need import Swift pod to my Swift project and I faced to a problem. For example, I have the Swift framework, and I created the next podfile:
platform :ios, '8.0'
use_frameworks!
pod 'CheckMarkView'
During pod installation I hadn't any errors, but my project doesn't see pod class.
Please help, what am I doing wrong?
You can check the issue here.
Thanks in advance.
Upvotes: 3
Views: 356
Reputation: 197
I figured out what was the problem, Swift pod framework classes must be public. Thanks for help.
Upvotes: 1