kidsid49
kidsid49

Reputation: 1378

How to add a swift file to Objective c pod?

I am working on my own private pod and wants to add a swift file to my existing Objective-C private pod. When I tried to add .swift file Xcode created the Pods-Tests-Bridging-Header.h file.

In-fact I mentioned this file in build settings "Objective-C Bridging Header" also.

As I have read on apple developer docs Its says I have to import a "modfule_name-swift.h" in my files to access swift classes files.

And as separate Xcode project of Objective-C I am able to do that thing by importing "Project_name-swift.h" file in Objective-C Code.

While I am trying to same thing in Pods like "#import "Pods-Tests-swift.h" compiler couldn't recognize it and starts giving errors.

How to do that?

Upvotes: 2

Views: 400

Answers (1)

CaptainCOOLGUY
CaptainCOOLGUY

Reputation: 1161

CocoaPods does not yet support Swift

Upvotes: 0

Related Questions