If IOS twitter settings has more then one twitter account, IOS Twitter kit in my application shows several buttons (one for each twitter account) to select account to log-in when the following API is used:
- (void)logInWithCompletion:(TWTRLogInCompletion)completion;
It works OK if only one button is chosen.
However It is possible to select two buttons with two fingers. It leads to multiple call of “completion” block, then application is frozen.
Do anybody know how to forbid choosing multiple account or how to prevent application from getting frozen?