If user sends SMS in my app using MFMessageComposeViewController, cursors of UITextFields are gone.
Is there a way to prevent this or bring the cursor back at least?
It was related to showing a UIAlertView on finished delegate method of MFMessageComposeViewController. Although I was showing UIAlertView after dismissing the modal view, it was causing that bug.
Removing UIAlertView fixed the issue. Now I'm thinking of designing my own alert popup and showing it instead of the default UIAlertView.