dyld: Library not loaded: /System/Library/Frameworks/AVKit.framework/AVKit
Referenced from: /var/mobile/Applications/8A2B89C2-C38B-44E8-87E2-B6E9E2190381/应用名称.app/应用名称
Reason: image not found
问题核心:
低版本的iOS系统,没有这些framework。
解决方案:
target ---> Build Phases ---> Link Binary With Libraries,添加AVKit.framework,同时将其status由Required 修改成Optional。
网友评论