I am asking this question because I didn't found any resources on this issue, and therefore I can't complete my project on this.
I have this basic alamofire post request:
let request = Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters, encoding: JSONEncoding.default)
If I am not connected to the Internet, I want to save this request and then perform it again when the internet is connected.
Any ideas on how to start on this issue? Any suggestion will be very much appreciated.