【iOS】更新 CocoaPods 后 Podfile 报错

更新了 CocoaPods 后,再执行 "pod install" 时报了如下错误:

[!] The dependency `AFOnoResponseSerializer` is not used in any concrete target.
The dependency `SDWebImage` is not used in any concrete target.
The dependency `SSKeychain` is not used in any concrete target.
The dependency `ReactiveCocoa` is not used in any concrete target.
The dependency `GPUImage` is not used in any concrete target.
The dependency `MBProgressHUD` is not used in any concrete target.

如图所示:

原因是 Podfile 的格式改了。新的格式如下:

官网地址:https://cocoapods.org/

此外,使用 "pod search **" 命令,可以查看使用的第三方库的版本号等信息。

参考:

http://blog.csdn.net/sjl_leaf/article/details/50506057

https://segmentfault.com/q/1010000000716129

时间: 2024-11-08 23:48:53

【iOS】更新 CocoaPods 后 Podfile 报错的相关文章

cocoapods导入afnetworking报错问题

使用cocoapods导入afnetworking报错,原因是当前xcode的版本低使用了最新版本的afnetworking,就会出现如下错误,这时候只只要使用终端,更新使用低版本的afnetwork ing即可. 如果是其他情况下导致出现了APPLE   LLVM  6.0 Error 错误,可以尝试去资源库--Developer--xcode--DerivedData文件夾,删除 DerivedData文件夹下的内容(如DerivedData文件夹下无重要文件).如无法全部删除,则删除 De

使用Entity Framework迁移完数据库后,每次修改代码(非模型代码)后都报错。

问题:使用Entity Framework迁移完数据库后,每次修改代码(非模型代码)后都报错: 支持“XXXDbContext”上下文的模型已在数据库创建后发生更改.请考虑使用 Code First 迁移更新数据库(http://go.microsoft.com/fwlink/?LinkId=238269). 这时如果执行 Add-Migration 生成的迁移代码是空的.于是重新Update-Database,结果却是No pending explicit migrations. 不过这时是不

linux上安装完torch后仍报错:ImportError: No module named torch

linux上安装完torch后仍报错: Traceback (most recent call last): File "cifar10_tutorial.py", line 58, in <module> import torch ImportError: No module named torch 是因为还要进行环境配置: 首先进入: vim ~/.bashrc 添加下面的语句: . /home/yourdirectory/torch/install/bin/torch

安装mongodb后启动报错libstdc++

安装mongo后启动报错如下图 显然说是libstdc++.so文件版本的问题,这种一般都是gcc版本太低了 接着查询gcc的版本    strings /usr/lib/libstdc++.so.6 | grep GLIBCXX 接着去找下libstdc++.so新点的版本,一定要根据自己的系统版本去找啊,由于我找错了版本报错系统位数不对 随后下载了一个64位的libstdc++.so.6.0.17的文件,然后软链成libstdc++.so.6 ln -s libstdc++.so.6.0.1

azure云迁移后expdp报错ORA-01110: data file 201: &#39;/home/oradata/powerdes/temp01.dbf&#39;

1,expdp的时候报错: 在idc的oracle服务器上正常导入导出都ok的,但是到了azure云上就出故障了: [[email protected] oracle]$ expdp \'powerdesk/testcrmfile\' directory=DIR_DUMP tables=bis_floor,bis_shop,bis_shop_conn,bis_store,bis_cont dumpfile=zhengyin.qu_bak_$(date +%Y%m%d)_02.dmp Export

dialogic d300语音卡驱动重装后启动报错问题解决方法

dialogic d300 驱动重装后 dlstart  报错解决 问题描述:dlstart  后如下报错 [[email protected] data]#dlstop Stopping Dialogic Services... Stopping Clocking Daemon:[  纭畾  ] Stopping ClockingServer:[  纭畾  ] Stopping Telephony System Monitor:[  纭畾  ] Stopping Dialogic(R)

升级php7后的报错处理

*由于php7的出现带来大幅的性能提升,想体验下新版本带来的特性,因此做了升级. 发现在网站中请求接口时发生错误,排查后把解决方法记录下来 升级php后站点报错,提示如下: Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and willbe removed in a future version. To avoid this warning set'always_populate_raw_post_d

Maven项目下update maven后Eclipse报错:java.lang.ClassNotFoundException: ContextLoaderL

Maven项目下update maven后Eclipse报错:java.lang.ClassNotFoundException: ContextLoaderL     严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: org.springframework.web.co

iOS开发-url包含中文报错解决办法

经常, 我们用通过这样的方法调用API. NSString* urlString = [NSString stringWithFormat:@"http://api.douban.com/v2/movie/search?q=%@", content]; NSURL *url = [NSURL URLWithString:urlString]; testRequest = [ASIHTTPRequest requestWithURL:url]; [testRequest setDeleg