Is there a way I can use a CocoaPod written in Objective-C in my Swift project using swift?
Do I just make a bridging header? And if so, can I access the objects, cl
In podFile use the flag use_frameworks! Inside Xcode in the Pod folder structure in the dependency, you add xxxxxxx-umbrella.h in Support Files.
use_frameworks
Pod
xxxxxxx-umbrella.h
In your {PROJECT_NAME}-Bridging-Header.h use:
{PROJECT_NAME}-Bridging-Header.h
#import "xxxxxxx/xxxxxxx-umbrella.h"
It works for me.