在接手项目时同时遇到这样的问题首先no such module 希望能帮到大家

不管使用 pod install 或者 pod update 会报这样的错误

在接手项目时同时遇到这样的问题首先no such module 希望能帮到大家_第1张图片
Snip20160921_1.png

解决 1,3 的方法 找到这个地方
[!] The APP_NAME [Debug] target overrides the FRAMEWORK_SEARCH_PATHS build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation

  • Use the $(inherited) flag, or
  • Remove the build settings from the target.
在接手项目时同时遇到这样的问题首先no such module 希望能帮到大家_第2张图片
68A86FB6-416F-49F2-BB25-79F964EFABD1.png

把里面Debug 和 Release 改成这样 $(inherited)

解决 2 和 4 方法
pod install

后经常会出现如下错误

[!] The target 项目名 [Debug] overrides the OTHER_LDFLAGS build setting defined in Pods/Pods.xcconfig'. - Use the$(inherited)` flag, or
- Remove the build settings from the target.

[!] The target 项目名 [Debug - Release] overrides the OTHER_LDFLAGS build setting defined in Pods/Pods.xcconfig'. - Use the$(inherited)` flag, or
- Remove the build settings from the target.
对于我等菜鸟看得莫名奇妙,无从下手,那么如何解决呢?

在 Finder 中找到 项目名.xcodeproj,右键选择显示包内容
用文本编辑器打开 project.pbxproj,搜索 OTHER_LDFLAGS
若项目未运行 pod install
则会看到2处类似格式的语句

OTHER_LDFLAGS = "";

将其删除后运行

pod install

即可

若已运行

pod install

则删除2处如下格式的语句

OTHER_LDFLAGS

你可能感兴趣的:(在接手项目时同时遇到这样的问题首先no such module 希望能帮到大家)