I have some problems trying to move the root view (with a scrollView) from my view controller when the textfield is hidden by the keyboard. This textfield is not in the root.
My app runs in iOS7 and has only Portrait mode, if the position is bottom home button I get the right values from UIKeyboardFrameEndUserInfoKey:
(CGRect) $2 = origin=(x=0, y=760) size=(width=768, height=264)
But if the position is Top home button y get a wrong origin from UIKeyboardFrameEndUserInfoKey:
(CGRect) $3 = origin=(x=0, y=0) size=(width=768, height=264)
Do you have any idea?
Thanks!