The screen becomes blurred like UIAlertview is popping very slowly, whenever my app posts tweet requests in iOS5. How do I fix that?
The screen becomes blurred like UIAlertview is popping very slowly, whenever my app posts
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
after the completion of request I used [alertView show] method in the the request handler block of TWRequest which I assume was called in different thread and was causing the issue. Calling that method in main thread solved the problem.
[alertView performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:NO];