AFNetworking not compatible with iOS 4.3

后端 未结 2 1581
一生所求
一生所求 2020-12-28 15:22

I am using CocoaPods to install the AFNetworking library. Here is my simple CocoaPods file:

platform :ios
pod \'FMDB\'
pod \'AFNetworking\'
<
2条回答
  •  孤城傲影
    2020-12-28 15:45

    Specifying your Versions of the desired pods may help.

    platform :ios, '6.0'
    pod 'FMDB', '~> 2.0'
    pod 'AFNetworking', '~> 1.1.0'
    

    Also make sure you're opening the correct xcworkspace file.

提交回复
热议问题