The dependency `` is not used in any concrete 解决办法

在更换完电脑或者升级了podfile版本之后pod的内容必须明确的指出所用的第三方库的target否则会出现错误:The dependency `` is not used in any concrete 

为了解决这个问题进入了cocospod的官网,在官网中Podfile文件的格式是

platform :ios, '7.0'

target "AppName" do

(这个地方是pod的内容 eg :pod 'pop')

end

然后直接采用pod install 既可以 

需要注意的是在这个过程中也许会出现错误

[!] Invalid `Podfile` file: /Users/mark/Downloads/VBFPopFlatButton-master/Podfile:3: syntax error, unexpected tIDENTIFIER, expecting end-of-input 

如果是编码的问题可以参考文章:http://www.cnblogs.com/mgbert/p/3945273.html  

你可能感兴趣的:(The dependency `` is not used in any concrete 解决办法)