You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Select either the ID or Name control so that it has focus and the keyboard appears
Rotate the device/simulator
//expected: Device to rotate and the first responder to remain as is with the keyboard selected
//actual: The device rotates, but the first responder is lost
Notes:
If you comment out the base.DidRotate() call, it works (but Apple wants you to call the base)
If you comment out the call to tableView.ReloadData() inside the ReloadData() method, it works (but I don't know what side effects that opens up)
Keeping the first responder and keyboard after rotation works in non-MTD apps
From https://bugzilla.xamarin.com/show_bug.cgi?id=17714:
Moved from discussion here: https://forums.xamarin.com/discussion/13341/restore-focus-after-rotate#latest
//expected: Device to rotate and the first responder to remain as is with the keyboard selected
//actual: The device rotates, but the first responder is lost
Notes:
Comment from Rolf:
Apparently ReloadData should resign the first responder:
http://stackoverflow.com/questions/6409370/uitableview-reloaddata-resigns-first-responder
However we seem to need ReloadData to resize cells:
b55b51d
I'm not sure how to best solve this situation.
The text was updated successfully, but these errors were encountered: