AFNetworking 2.2.1是否支持iOS 6.0?

这个问题在这里已经有了答案:

  • AFNetworking 2.0是否支持iOS 6.0? 5个答案

  • 您是否添加了这些框架:SystemConfiguration,Security,CFNetwork?


    AFNetworking 2.X已更新为iOS 7和新的NSURLSession协议,这些协议仅在iOS 7中可用。为了在iOS的先前版本中使用此优秀工具栏,您必须在podfile中指定。

  • 平台版本,像这个platform :ios, '6.0'
  • 你需要乐观运营商~>所需的AFNetworking版本
  • 所以AFNetworking的podfile应该如下所示

    platform :ios, '6.0'
    xcodeproj 'MyProject'
    pod 'AFNetworking', '~> 1.8'
    

    要么

    platform :ios, '6.0'
    xcodeproj 'MyProject'
    pod 'AFNetworking', '< 2.0'
    

    希望这篇文章有帮助!

    链接地址: http://www.djcxy.com/p/96773.html

    上一篇: Does AFNetworking 2.2.1 support iOS 6.0?

    下一篇: AFNetworking and background transfers