How to use Objective-C CocoaPods in a Swift Project

Objective CSwiftCocoapods

Objective C Problem Overview


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, classes, and fields defined by the libraries in the CocoaPod in Swift?

Objective C Solutions


Solution 1 - Objective C

Basic answer to your question is Yes, you can use objective-c code built with CocoaPods.

More important question is "How to use such libs?"
Answer on this question depends on use_frameworks! flag in your Podfile:
Let's imagine that you want use Objective-C pod with name CoolObjectiveCLib.

If your pod file uses use_frameworks! flag:

// Podfile
use_frameworks!
pod 'CoolObjectiveCLib'

Then you don't need add any bridge header files.
Everything that you need is import framework in Swift source file:

// MyClass.swift
import CoolObjectiveCLib

Now you can use all classes that are presented in lib.

If your pod file doesn't use use_frameworks! flag:

// Podfile
pod 'CoolObjectiveCLib'

Then you need create bridging header file and import there all necessary Objective-C headers:

// MyApp-Bridging-Header
#import "CoolObjectiveCLib.h"

Now you can use all classes that are defined in imported headers.

Solution 2 - Objective C

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.

In your {PROJECT_NAME}-Bridging-Header.h use:

#import "xxxxxxx/xxxxxxx-umbrella.h"

It works for me.

Solution 3 - Objective C

You just need a bridging header and import there what you need.

Solution 4 - Objective C

AND don't forget to add Bridging Header file name to Target -> Build Settings -> Objective-C Bridging Header

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionshaydawgView Question on Stackoverflow
Solution 1 - Objective CVlad PapkoView Answer on Stackoverflow
Solution 2 - Objective CRodolfoNetoView Answer on Stackoverflow
Solution 3 - Objective CLucian BobocView Answer on Stackoverflow
Solution 4 - Objective Co0sea0oView Answer on Stackoverflow