2
votes

I'm run project, and it's error "dyld: Symbol not found: __T0BOWV" How to fix it? Thank you...!

enter image description here

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

2
Try command + sift + option + k to clean your project filesA.Munzer
I tried, but it didn't work :(HunTerX
from xcode file -> WorkSpaceSetting -> build system change it to Legacy build systemA.Munzer
1. Try making PKHUD.framework in your build phases as Optional. 2. Try setting Build Settings > Always Embed Swift Standard Libraries to YESArun
@A.Munzer It not workingHunTerX

2 Answers

0
votes

Find the match Xcode version:

otool -L YOUR_FRAMEWORK

#
# ...
@rpath/libswiftAVFoundation.dylib (compatibility version 1.0.0, current version 1001.0.69)

Now you just have to lookup for the Swift version with this link.

Xcode   Swift version string 
10.2    5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
0
votes

Change the status of newly added framework from "Required" to "Optional" from General Setting of project target.