通过我的工作开发者帐户,我创建了一个带有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.
我一直在寻找解决这个问题的方法,但没有提出任何建议。有人有解决方案吗?
答案 0 :(得分:47)
确保您的Podfile如下所示:
platform :ios, '6.0'
pod 'AFNetworking'
# other pods
那是因为AFNetworking
需要iOS 5 +。