I am using SLComposeViewController to share on twitter, whenever I share the same message twice in succession twitter shows me a error dialog stating that, the message is duplicate , see image below
Their is no way to handle this message, I am not understanding when this message comes up, Now if I click OK, shown on the alertView it calls
- (void)applicationDidBecomeActive:(UIApplication *)application
{
}
But my main problem is , I am providing a password facility for user, and I have written the code to show password View in this function.So generally, the above function is called only when the user opens the app once again. But in this case as this function is called , my app is showing password View.
So how to handle this situation
Regards Ranjit.