用pod导入自己创建的私有库时,如果没有添加 use_frameworks ,在编译的时候就会报 “Unable to run command 'StripNIB xx.nib' - this target might include its own product” 这个错误。具体步骤请看图:
执行 pod install 后
此时 command + B 编译程序,会报错误:
此时,只需要在 podfile 文件中添加 use_frameworks!即可
添加完后,执行 pod install ,回到 Build Phases 中,
再次,编译,即可通过。