Can't find Swift umbrella title

My project depends on my own structure. In the framework, I started to implement some functionality using Swift

.

So I needed an import statement #import "Appmodule-Swift.h"

in some of my files Obj-C

inside the framework.

Everything works fine inside the framework, but as soon as it is imported into the project (via cocoa pods) it #import "Appmodule-Swift.h"

creates a compile time error file not found

.

So, as you can create a framework with the help of cocoa pods, which uses both Obj-C

, as well Swift

?

Is there something specific you need to add to the file Podspec

?

+3


source to share





All Articles