Alamofire is an HTTP networking library written in Swift.
I am trying upload files with parameters (multipartformdata) but i can't do it with new version Alamofire 5, if you have …
ios swift alamofire multipartform-data swift4.2now I'm working on an iOS application in Swift 4. Here I'm using Alamofire to integrate the API calls. I need …
ios swift alamofire alamofire-requestSo i'm a bit lost on how to implement a retry logic when my upload request fail. Here is my …
swift alamofireI'm trying to set a client-side timeout per request for Alamofire for Swift. The lead architect told me to set …
swift timeout client nsurlrequest alamofireI'm pretty new to iOS development and Swift (so please bear with me). I have a class object defined like …
swift alamofire swifty-jsonThis my first project using swift. I am usin alamofire to connect the API. I have a local copy form …
swift certificate alamofireI set my cache as below var cacheSizeMemory = 20 * 1024 * 1024 var cacheSizeDisk = 100 * 1024 * 1024 var sharedCache = NSURLCache(memoryCapacity: cacheSizeMemory, diskCapacity: cacheSizeDisk, diskPath: "SOME_PATH") …
swift nsurlcache alamofireIt is my understanding that by default, Alamofire requests run in a background thread. When I tried running this code: …
ios swift multithreading alamofire