Alamofire-SwiftyJSON 3.0.0

Alamofire-SwiftyJSON 3.0.0

测试已测试
语言语言 SwiftSwift
许可证 MIT
发布最后发布2017年11月
SwiftSwift 版本3.0
SPM支持 SPM

XinguangZigii Wong 维护。



 
依赖
Alamofire~> 4.5
SwiftyJSON~> 4.0.0
 

  • 作者
  • tangplin

AlamofireSwiftyJSON


方便使用 AlamofireSwiftyJSON

要求

  • iOS 8.0+ / Mac OS X 10.9+
  • Xcode 7.0

安装

  • CocoaPods
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target "target name" do
  pod 'AlamofireSwiftyJSON'
end

  • Carthage

使用

let URL = "http://httpbin.org/get"
Alamofire.request(.GET, URL, parameters: ["foo": "bar"]).responseSwiftyJSON { response in
  print("###Success: \(response.result.isSuccess)")
  //now response.result.value is SwiftyJSON.JSON type
  print("###Value: \(response.result.value?["args"].array)")
}