实现过程推荐:http://www.jianshu.com/p/87dbf57cfe4a
1.遇到 Reason: image not found
2.遇到 Missing submodule 'SecurityGuard.Security'
1.遇到 Reason: image not found
报错:
dyld: Library not loaded: @rpath/SecurityGuard.framework/SecurityGuard
Referenced from: /Users/didi/Library/Developer/CoreSimulator/Devices/
14A1EFC9-31FD-4FF8-A3A2-64A254FAE27A/data/Containers/Bundle/Application/
60645B0E-F62C-400B-9AA7-53742B0E0B8C/321321.app/321321
Reason: image not found
解决方法:
一顿搜索之后发现这个问题得产生是因为引用得一些framework只能存在于高版本得sdk中,但是,如果编译到低版本的ios就会发生这样的问题,我的真机是iOS6的版本的,GameController.framework可能高于这个版本,这里只需要在对应的target下的Build Phases标签里,找到Link Binary With Libraries,在里面找到GameController.framework,把status由Required 修改成Optional,然后再运行就OK了。其他的framework报错也适用,只需要修改对应的framework的status就行了。
2.遇到 Missing submodule 'SecurityGuard.Security'
解决方法: 在.h中包含需要的头文件,不然会找不到