All Projects → SwiftyJSON → Alamofire Swiftyjson

SwiftyJSON / Alamofire Swiftyjson

Licence: mit
Alamofire extension for serialize NSData to SwiftyJSON

Programming Languages

swift
15916 projects

Labels

Projects that are alternatives of or similar to Alamofire Swiftyjson

Netfox
A lightweight, one line setup, iOS / OSX network debugging library! 🦊
Stars: ✭ 3,188 (+139.52%)
Mutual labels:  alamofire
Tron
Lightweight network abstraction layer, written on top of Alamofire
Stars: ✭ 508 (-61.83%)
Mutual labels:  alamofire
Unboxedalamofire
[Deprecated] Alamofire + Unbox: the easiest way to download and decode JSON into swift objects.
Stars: ✭ 65 (-95.12%)
Mutual labels:  alamofire
Ws
⚠️ Deprecated - (in favour of Networking) ☁️ Elegantly connect to a JSON api. (Alamofire + Promises + JSON Parsing)
Stars: ✭ 352 (-73.55%)
Mutual labels:  alamofire
Bamboots
Bamboots - Extension 4 Alamofire
Stars: ✭ 434 (-67.39%)
Mutual labels:  alamofire
Codablealamofire
An extension for Alamofire that converts JSON data into Decodable objects.
Stars: ✭ 744 (-44.1%)
Mutual labels:  alamofire
NetworkRequestKit
Elegant way to make a network request🌟
Stars: ✭ 35 (-97.37%)
Mutual labels:  alamofire
Networking
Easy HTTP Networking in Swift a NSURLSession wrapper with image caching support
Stars: ✭ 1,269 (-4.66%)
Mutual labels:  alamofire
Iowncode
A curated collection of iOS, ML, AR resources sprinkled with some UI additions
Stars: ✭ 499 (-62.51%)
Mutual labels:  alamofire
Evreflection
Reflection based (Dictionary, CKRecord, NSManagedObject, Realm, JSON and XML) object mapping with extensions for Alamofire and Moya with RxSwift or ReactiveSwift
Stars: ✭ 954 (-28.32%)
Mutual labels:  alamofire
Tswechat
A WeChat alternative. Written in Swift 5.
Stars: ✭ 3,674 (+176.03%)
Mutual labels:  alamofire
Bagel
a little native network debugging tool for iOS
Stars: ✭ 4,005 (+200.9%)
Mutual labels:  alamofire
Rxswiftexamples
Examples and resources for RxSwift.
Stars: ✭ 930 (-30.13%)
Mutual labels:  alamofire
Daisynet
1. - Alamofire与Cache封装 , 更容易存储请求数据. 2. - 封装Alamofire下载,使用更方便
Stars: ✭ 331 (-75.13%)
Mutual labels:  alamofire
Simpleapiclient Ios
A configurable api client based on Alamofire4 and RxSwift4 for iOS
Stars: ✭ 68 (-94.89%)
Mutual labels:  alamofire
Serpent
A protocol to serialize Swift structs and classes for encoding and decoding.
Stars: ✭ 281 (-78.89%)
Mutual labels:  alamofire
Ios Viper Architecture
This repository contains a detailed sample app that implements VIPER architecture in iOS using libraries and frameworks like Alamofire, AlamofireImage, PKHUD, CoreData etc.
Stars: ✭ 578 (-56.57%)
Mutual labels:  alamofire
Rxmarvel
Playing around marvel public API with RxSwift, Argo, Alamofire
Stars: ✭ 86 (-93.54%)
Mutual labels:  alamofire
Spotifykit
Swift client for Spotify Web API
Stars: ✭ 84 (-93.69%)
Mutual labels:  alamofire
U17
精仿有妖气漫画(Swift5)
Stars: ✭ 853 (-35.91%)
Mutual labels:  alamofire

Alamofire-SwiftyJSON

An extension to make serializing Alamofire's response with SwiftyJSON easily.

⚠️ To use with Swift 3.x please ensure you are using >= 2.0.0 ⚠️

⚠️ To use with Swift 4.x please ensure you are using >= 3.0.0 ⚠️

Swift version

Alamofire-SwiftyJSON Swift version Alamofire SwiftyJSON
2.x Swift 3.x 4.x 3.x
3.x Swift 4.x 4.5.x 4.x

Requirements

  • iOS 8.0+ / Mac OS X 10.9+
  • Xcode 8.0+
  • Swift 3.0+

Install

CocoaPods:

pod 'Alamofire-SwiftyJSON'

Carthage:

github "SwiftyJSON/Alamofire-SwiftyJSON" "master"

Usage

import Alamofire_SwiftyJSON
Alamofire.request(URL, method: .get, parameters: parameters, encoding: URLEncoding.default)
         .responseSwiftyJSON { dataResponse in
                     print(dataResponse.request)
                     print(dataResponse.response)
                     print(dataResponse.error)
                     print(dataResponse.value)
                  })
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].