I'm building an app in wich the user will use one of his iOS integrated Twitter accounts. I'm using the Accounts Framework and in the documentation example, the account from wich the request to Twitter will be performed is grabbed this way : ACAccount *twitterAccount = [accountsArray objectAtIndex:0]; so the user has no choice regarding wich "TWAccount" he is using.
I will easily build an UISheet to display all Twitter accounts and let the user choose the one he wants, but my question is :
What is the proper way to store the chosen account for a long term use through the app ?
Edit : Sorry my question wasn't entirely clear. I want to store it like we store other preferences for an app. So the first time the user is launching the app he has to chose which account to use, but after that he will never have to chose anymore when he'll relaunch it.