I'm run project, and it's error "dyld: Symbol not found: __T0BOWV" How to fix it? Thank you...!
Referenced from:
/Users/letai/Library/Developer/CoreSimulator/Devices/B5E16F1A-C17C-4C65-B743-73775C820891/data/Containers/Bundle/Application/A7E06426-84F9-45DF-8063-337D094BED80/A.app/Frameworks/PKHUD.framework/PKHUD
Expected in: /Users/letai/Library/Developer/CoreSimulator/Devices/B5E16F1A-C17C-4C65-B743-73775C820891/data/Containers/Bundle/Application/A7E06426-84F9-45DF-8063-337D094BED80/A.app/Frameworks/libswiftCore.dylib
in
/Users/letai/Library/Developer/CoreSimulator/Devices/B5E16F1A-C17C-4C65-B743-73775C820891/data/Containers/Bundle/Application/A7E06426-84F9-45DF-8063-337D094BED80/A.app/Frameworks/PKHUD.framework/PKHUD
It is basically happening when you add a library or framework to your project but you did not do it right. try to remove the mentioned framework and add it in a right way. the right way depends on your dependency manager. you are using
Carthage
orPod
. This error mostly happens in Carthage when you are not importing the dependent framework of the newly added framework.Find the match Xcode version:
Now you just have to lookup for the Swift version with this link.
Change the status of newly added framework from "Required" to "Optional" from General Setting of project target.