CocoaPods不为iOS7和Xcode 5安装Pod

eri*_*aio 13 cocoa-touch objective-c afnetworking cocoapods

通过我的工作开发人员帐户,我创建了一个带有Xcode 5和iOS7的新iOS项目.安装"AFNetworking"或"RestKit"窗格时.我收到此错误消息.

[!] The platform of the target `Pods` (iOS 4.3) is not compatible with `AFNetworking 
(1.3.1)` which has a minimum requirement of iOS 5.0 - OS X 10.7.
Run Code Online (Sandbox Code Playgroud)

我一直在寻找解决这个问题的方法,但没有提出任何建议.有人有解决方案吗?

Mar*_*bri 47

Make sure your Podfile looks like this:

platform :ios, '6.0'

pod 'AFNetworking'
# other pods
Run Code Online (Sandbox Code Playgroud)

That's because AFNetworking requires iOS 5+.