I am a newbie to iOS development.
How and where to store values we pull from the server at the time of authentication? I am developing this app which uses a login screen. Once you try to login, it sends a JSON post to the API and the server responds. We get back a unique userid. How and where should I store that unique user id so that I can use it to pull data across different views? That is after loggin in, it goes to a different view controller. Is there anything like a global variable or storage which I can access in any view controller?
Thanks.