静态库使用出现的各种问题

###1、Library not loaded: xxx.framework Referenced from X/X/X Reason: image not found ![image](https://upload-images.jianshu.io/upload_images/1132412-eea8b013a499a49e?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 上图Link Binary With Libraries中的Required改为Optional 但是虽然不会报错,但是存在另一个非常严重的问题:该framwork资源、方法等都无法访问 因为系统因为这个framework有问题,所以就没有对他进行编译使用。 #####解决方式: ![image.png](https://upload-images.jianshu.io/upload_images/1132412-b25c1499f2c8d4d9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 在这里加入自己的framework即可

你可能感兴趣的:(静态库使用出现的各种问题)