iOS swift framework arm64 not found

When I load the iOS frameworks which coding with Objective-C all work fine but after I add a Swift framework plugin (develop with swift) it come up with the error not found Combine for architecture arm64, I user lipo -info command to check the architectures the binary contain arm64.
I already add the bridgeHeader file

Is there anyboy add swift frameworks plugins successfly

Thanks

Hello, I have the same problem. Have you found a solution

For using swift library in UE4, you need to do these things in Xcode project:

  1. add correct swift library path into “Library Search Paths”

  2. enable “Always Embed Swift Standard Library”

  3. add “usr/lib/swift” and “@executable_path/Frameworks” in “Runpath Search Paths”, and order does matter!

For more detail about how to do that in UE, you can checkout my answer to a similar question:

1 Like