AlamofireObjectMapper
AlamofireObjectMapper copied to clipboard
An Alamofire extension which converts JSON response data into swift objects using ObjectMapper
I have an issue with the latest release of AlamofireObjectMapper. I have an API that returns an array of JSON data and each item has 3 nested dictionaries. I am...
Is it possible to give key while deserializing case insensitive because I have base class which handles all the responses that I get from server with following code; `item
Basically I am mapping and using generic Response for my response and the problem is, in my response I am getting some values in header I can only get it...
`Module compiled with Swift 4.1 cannot be imported by the Swift 4.2 compiler: /Users/jaspur/Code/the-app/X/Y/Carthage/Build/iOS/AlamofireObjectMapper.framework/Modules/AlamofireObjectMapper.swiftmodule/x86_64.swiftmodule`
is there any way to use this library with PromiseKit library?
Hi. I got problem, when i cancel request, but still got result in alamofire network function, the dataResponse can not convert to any object, it only contain **failutre**. ![screen shot...
First off, thanks for the great project! This issue could just as well be posted to the ObjectMapper repo, but I thought I'd post it here nonetheless, since it affects...
``` Alamofire.request(URL, method: Endpoints.login.method, parameters: parameters, encoding: JSONEncoding.default, headers: nil) .validate() .responseObject { [weak self] (response: DataResponse) in switch response.result { case .success(let user): cb(.success(user)) case .failure(let error): log.error(error) cb(.failure(error))...
I have a response data structure like showing below: ```json {"status":"success", "data":[ { "conditions": "Partly cloudy", "day" : "Monday", "temperature": 20 }, { "conditions": "Showers", "day" : "Tuesday", "temperature": 22...
When I run 'pod repo lint' I get an error for the AlamofireObjectMapper Cocoapod podspec file. The problem is that 'true' != true. The following line is correct s.requires_arc =...