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?
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?
I had a similar problem. There was a login screen that shows a UIAlertView when login fails. After dismissing the alert view cursor was gone from user name and password fields. I fixed the issue by recreating an identical view controller and view hierarchy on the storyboard.
The storyboard was originally created in Xcode 4 and later converted to Xcode 5. Perhaps Xcode messed up something.
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.