但xcode设置中并没有找到Embed Frameworks这个选项,使用以下方式添加
当遇到dyld: Library not loaded:xxxx Reason: image not found 时,将添加的framework改为optional
-----------------------------------------------------------------
2015/11/20更新,今天发现上面的设置有问题,不能设定为Optional,不然调用方法时直接没有任何响应,改为Required之后,启动会报错
dyld: Library not loaded: @rpath/xsdkFramework.framework/xsdkFramework
Referenced from: /private/var/mobile/Containers/Bundle/Application/33711DFF-DEB1-46BB-A8B2-2A9C940834F0/xxxx.app/xxx_ky
Reason: image not found
也就是上面的Copy Files没有起作用,最正确的方式是第一张截图“Embed Frameworks”,但是Build Phases中死活没有找到入口
只有copy files,没有Embed Frameworks,怎么办…
后来我发现copy之后,General中的Embed Frameworks多了一个文件,然后我试着删除Copy Files,直接将frameworks拖到General中,搞定了!
注意直接将文件拖入即可,再次运行,就不会报image not found了