博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cocoa pods 小坑
阅读量:5896 次
发布时间:2019-06-19

本文共 5041 字,大约阅读时间需要 16 分钟。

hot3.png

:解决CocoaPods安装时报的问题,http://ruby.taobao.org/latest_specs.4.8.gz 报404

解决 bad response Not Found 404 (http://ruby.taobao.org/latest_specs.4.8.gz)

原因:淘宝停止基于 HTTP 协议的镜像服务 需要改用https的协议

复制代码

gem sources --remove http://ruby.taobao.org/gem sources -a https://ruby.taobao.org/gem sources -lsudo gem install -n /usr/local/bin cocoapods

复制代码

当然如果你是第一次安装时(目前网上有些安装资料可能还指向淘宝的http):

gem sources -lgem sources --remove https://rubygems.org/gem sources -a https://ruby.taobao.org/gem sources -lsudo gem install -n /usr/local/bin cocoapods

 

2:CocoaPods更新版本后,安装跟更新第三方报错

复制代码

Update all podsRe-creating CocoaPods due to major version update.Updating local specs repositoriesAnalyzing dependencies[!] The dependency `ReactiveCocoa (~> 2.5)` is not used in any concrete target.The dependency `SDWebImage (~> 3.7.5)` is not used in any concrete target.The dependency `AFNetworking (~> 2.5.4)` is not used in any concrete target.The dependency `Masonry (~> 0.6.4)` is not used in any concrete target.The dependency `JSONModel (~> 1.2.0)` is not used in any concrete target.The dependency `JCAlertView (~> 1.1.5)` is not used in any concrete target.The dependency `RongCloudIMKit (= 2.5.2)` is not used in any concrete target.The dependency `SMPageControl (~> 1.2)` is not used in any concrete target.The dependency `FMDB` is not used in any concrete target.The dependency `GTSDK` is not used in any concrete target.The dependency `BaiduMapKit` is not used in any concrete target.The dependency `UMengAnalytics-NO-IDFA` is not used in any concrete target.The dependency `Fabric` is not used in any concrete target.The dependency `Crashlytics` is not used in any concrete target.The dependency `CocoaLumberjack` is not used in any concrete target.The dependency `TTTAttributedLabel` is not used in any concrete target.The dependency `FLEX` is not used in any concrete target.The dependency `GVUserDefaults` is not used in any concrete target.The dependency `UMengFeedback (~> 2.3.4)` is not used in any concrete target.The dependency `TYAttributedLabel (~> 2.5.6)` is not used in any concrete target.The dependency `IQKeyboardManager` is not used in any concrete target.The dependency `MWPhotoBrowser` is not used in any concrete target.

复制代码

可以通过 $ pod --version 查看版本号;

原因是podfile升级到最新版本,pod里的内容必须明确指出所用第三方库的target;可以修改Podfile文件的配置文件,让它兼容不指定固定版本;且又不报错;

复制代码

platform :ios, '7.0'target 'zxptUser’ dopod 'ReactiveCocoa', '~> 2.5'pod 'SDWebImage', '~> 3.7.5'pod 'AFNetworking', '~> 2.5.4'pod 'Masonry', '~> 0.6.4'pod 'JSONModel', '~> 1.2.0'pod 'JCAlertView', '~> 1.1.5'pod 'RongCloudIMKit', '2.5.2' #不要更新此库 源代码已被修改pod 'SMPageControl', '~> 1.2'pod 'FMDB'pod 'GTSDK'pod 'BaiduMapKit' #百度地图SDKpod 'UMengAnalytics-NO-IDFA'#友盟统计无IDFA版SDKpod 'Fabric'pod 'Crashlytics'pod 'CocoaLumberjack'pod 'TTTAttributedLabel'pod 'FLEX'pod 'GVUserDefaults'pod 'UMengFeedback', '~> 2.3.4'pod 'TYAttributedLabel', '~> 2.5.6’pod 'IQKeyboardManager'pod 'MWPhotoBrowser'end

复制代码

其中zxptUser要换成当前target名,最后不要忘记增加一个end结尾,当然如果你的工程是有多个target都要引用;则要使用link_with(这个一定要放在文件第一行)如下:

复制代码

link_with ['zxptUser' ,'zxptUser_local', 'zxptUser_AppStore']platform :ios, '7.0'pod 'ReactiveCocoa', '~> 2.5'pod 'SDWebImage', '~> 3.7.5'pod 'AFNetworking', '~> 2.5.4'pod 'Masonry', '~> 0.6.4'pod 'JSONModel', '~> 1.2.0'pod 'JCAlertView', '~> 1.1.5'pod 'RongCloudIMKit', '2.5.2' #不要更新此库 源代码已被修改pod 'SMPageControl', '~> 1.2'pod 'FMDB'pod 'GTSDK'pod 'BaiduMapKit' #百度地图SDKpod 'UMengAnalytics-NO-IDFA'#友盟统计无IDFA版SDKpod 'Fabric'pod 'Crashlytics'pod 'CocoaLumberjack'pod 'TTTAttributedLabel'pod 'FLEX'pod 'GVUserDefaults'pod 'UMengFeedback', '~> 2.3.4'pod 'TYAttributedLabel', '~> 2.5.6’pod 'IQKeyboardManager'pod 'MWPhotoBrowser'

复制代码

注意基中本工程中有三个target名字,'zxptUser' ,'zxptUser_local', 'zxptUser_AppStore'

 

3:不同的target引用不同的第三方插件

复制代码

target :'zxptUser' doplatform :ios  pod 'Reachability',  '~> 3.0.0'  pod 'SBJson', '~> 4.0.0'    platform :ios, '7.0'  pod 'AFNetworking', '~> 2.0'endtarget :'zxptUser_local' dopod 'OpenUDID', '~> 1.0.0'end

复制代码

注意每个都要以end结尾

 

4:删除CocoaPods版本,并安装指定版本

比如我本来安装完CocoaPods 1.0.0版,但发现它实现跟先前还是差别满大的,决定降回0.39这个比较稳定版本;就可以用命令先删除本地的CocoaPods版本,再指定安装特定版本;

a 卸载 cocoapods(它会提示你要删除本地哪个版也可以全删)

sudo gem uninstall cocoapods

b 安装 0.39版本

sudo gem install -n /usr/local/bin cocoapods -v 0.39

 

5:更新PODS后,报diff: /../Podfile.lock: No such file or directory 错误

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.

如图

解决办法:

查看工程中PROJECT中Configurations中相关配置是否正准,有可能某个分枝指到一个不存在的pods导致;

 

6:当PODS引入第三方后,项目中引用时发现头文件却显示不存在

排查办法,可以看到相应的targets里面的Build Phases中的Link Binary WithLibraries里面是否有把libPods.a库引入进来

一般出现没有引入进来可能是podFile指定的相应Targets导致其它的Targets没有这个库;

 

7:友盟最新版SDK调整

a:#import“MobClick.h”引入头文件由原来,更新为:#import "UMMobClick/MobClick.h"

b:初始化配置文件也进行更改,采用UMConfigInstance全局变量设置:

UMConfigInstance.appKey=kUMAnalyticsAppKey;    UMConfigInstance.channelId=@"App Store";    [MobClick startWithConfigure:UMConfigInstance];

 

8:关于融云跟百度地图支持IPV6

融云SDK 从2.5.2开始   百度地图SDK 从3.0.0开始

转载于:https://my.oschina.net/u/2532095/blog/693256

你可能感兴趣的文章
webpack多页应用架构系列(七):开发环境、生产环境傻傻分不清楚?
查看>>
笨办法学C 练习1:启用编译器
查看>>
树的总结--树的性质(树的深度) leetcode
查看>>
nagios短信报警(飞信fetion20080522004-linrh4)
查看>>
【Android游戏开发之六】在SurfaceView中添加组件!!!!并且相互交互数据!!!!...
查看>>
linux 将大文件分成小文件
查看>>
CCNA- 距离矢量路由协议学习
查看>>
jira 配置 LDAP 访问
查看>>
企业实践用户邮箱导入/导出(第2部分)
查看>>
我的友情链接
查看>>
如何学习Linux命令-初级篇
查看>>
从Oracle Public Yum为Oracle Linux建立本地的Yum源
查看>>
Android开发——09Google I/O之让Android UI性能更高效(1)
查看>>
在 SELECT 查询中使用表表达式
查看>>
静态路由和默认路由
查看>>
谈一谈Spring-Mybatis在多数据源配置上的坑
查看>>
2.1 shell语句
查看>>
【精益生产】车间现场管理的八大浪费
查看>>
springMVC国际化
查看>>
变频电源内部的元器件是有着什么样的发挥和作用
查看>>