cocoapods使用中出现的问题

NO1.

从GitHub上刚clone下来的项目,并且是从了cocoapods来管理第三方工具,那么一般会出现如下问题:

diff: /../Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod  install' or update   your CocoaPods installation.

如下图所示:

cocoapods使用中出现的问题_第1张图片
BEABEA29-7BA3-4D54-BD8C-7B622F2171A2.png

只要切换到含有Podfile的文件夹使用终端命令pod install,来更新便可解决.

NO2.

但是 如果该项目将该xcodeproj后缀的文件移动到了子文件夹,那么可能会出现如下问题:

[!] The dependency `MJExtension (~> 3.0.10)` is not used in any concrete target.
The dependency `GTMBase64 (~> 1.0.0)` is not used in any concrete   target.
The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.
The dependency `UMengAnalytics-NO-IDFA` is not used in any concrete target.
The dependency `pop (~> 1.0.9)` is not used in any concrete target.
The dependency `Reachability` is not used in any concrete target.
[!] `xcodeproj` was renamed to `project`. Please update your Podfile accordingly.

如下图所示:

cocoapods使用中出现的问题_第2张图片
270F51BF-4928-4D12-A7F3-795A7C5A6647.png

这种情况是因为cocoapods更新到最新以后,需要指定该第三方使用到那个项目;更改Podfile文件,添加target,如下所示:

platform :ios, '7.0'
xcodeproj 'hsbank/hsbank.xcodeproj'

target 'hsbank' do

pod 'MJExtension', '~> 3.0.10'
pod 'GTMBase64', '~> 1.0.0'
pod 'AFNetworking', '~> 3.1.0'
pod 'UMengAnalytics-NO-IDFA'
pod 'pop', '~> 1.0.9'
pod 'Reachability'
end

一个target对应一个end,一定不能漏写.然后再使用pod install命令,就没有问题了.
有人可能会疑问,为什么Podfile文件要写这句xcodeproj 'hsbank/hsbank.xcodeproj',这是因为该项目将该xcodeproj后缀的文件移动到了子文件夹,所以在 Podfile文件中要指明一下下.这也是上文为什么会出现如下一个警告:

[!] `xcodeproj` was renamed to `project`. Please update your Podfile accordingly.

如果我们不来解决这个警告,那么我们的项目pods文件显示为红色,依然不能正常运行,会报告这样一个错误,并且如下所示:

Apple Mach-O Linker Error 
linker command failed with exit code 1 (use -v to  see invocation)

这报错只要把显示为红色的文件删除就没问题了.
这个警告要解除,依然是更改 Podfile 文件,将xcodeproj 'hsbank/hsbank.xcodeproj' 这行中的xcodeproj 更改为project,如下:

project 'hsbank/hsbank.xcodeproj'

更改好以后,使用命令pod install ,问题就几乎解决了,如果你打开项目还有问题,可以使用pod update命令更新一下cocoapods,使用过这个命令应该是没有问题,项目可以正常运行了呢,但是如果项目中没有显示出pods文件,不要着急,可能因为xcode还没反应过来吧,或许睡一觉再打开项目就显示出来了.

你可能感兴趣的:(cocoapods使用中出现的问题)