Alamofire No Such Module (CocoaPods)

后端 未结 17 1628
借酒劲吻你
借酒劲吻你 2020-12-09 15:26

Using Xcode 7

I am trying to install Alamofire in a sample project. Have used the instructions from Ray Wenderlich\'s page

Only change from above link is the

17条回答
  •  情书的邮戳
    2020-12-09 15:41

    Try this one.

    For Swift 2.0 there is no need to add Alamofire.xcodeproj into your xcode. Simply copy and paste source folder from https://github.com/Alamofire and you are done.

    or if you want to install Alamofire from Cocoapods then try below code.

      source 'https://github.com/CocoaPods/Specs.git'
      platform :ios, '8.0'
      use_frameworks!
    
      pod 'Alamofire', '~> 2.0'
    

提交回复
热议问题