I am looking to implement a relatively straight-forward feature where I make an call to an API the first time the user opens the app. However, unlike most circumstances where I am waiting for the API to provide confirmation or some information, I just want to make a "fire and forget" call and move forward with other processing.
I have explored AFNetworking
and referencing Apple's official documentation on this matter, and did not discover a quick way to make fire and forget API calls. I assume this should be relatively simple to accomplish - any tips would be appreciated. Thanks!
Unless I'm missing something about the question, if you don't care about the response, just make a normal async request with a completion handler, and leave the completion handler empty.