In my storyboard I have set up a Facebook login that fetches the users username and profile picture. I have this all done in an initial UIViewController (AKA the LoginViewController).
What I want to do is to be able to send this data (the username and profile picture) to other places. More specifically, I want to be able to:
- display the fetched profile picture in a UIImageView in a different UIViewController
- display the username in another text field in a different UIViewController
If someone could simply just tell me how to do this either with a code example or even a storyboard walkthrough I would be very appreciative.