I recently upgraded to Xcode 9 with 8.3.3.
Our project is written in Objective-C, like all other frameworks that we use. I added a framework that is written in Swift (version 3.0). In Xcode 8, I can easily build and run a project in the simulator and on the device. In Xcode 9, I cannot run the project on a simulator or device due to an error:
dyld: Library not loaded: @rpath/libswiftCore.dylib Referenced from: .../libraryname Reason: image not found
After downgrading, I was able to start the project again.
My configuration has:
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; STRIP_SWIFT_SYMBOLS = NO; SWIFT_VERSION = 3.0;
ios objective-c swift3 xcode9
joe muoio
source share