Re: Moving a textField from under keyboard

2013-07-02 Thread Esteban Torres
I wouldn't do the didBeginEditing approach; in case the user for whatever reason is using a Bluetooth keyboard, this will launch the scroll up method when there's not visible keyboard and will make the app look weird. Although I know its a farfetched scenario its still possible. What I usually

Re: Moving a textField from under keyboard

2013-06-29 Thread Diederik Meijer | Ten Horses
One way is to animate the UiTextField upwards in the didBeginEditing delegation method and down again in the shouldReturn. Verstuurd vanaf mijn iPhone Op 29 jun. 2013 om 00:44 heeft Julius Oklamcak juli...@icodemonks.com het volgende geschreven: I'm looking for something OR some method that

Moving a textField from under keyboard

2013-06-28 Thread YT
I'm looking for something OR some method that knows how to change (I think) the position (I think) of the view containing a UITextField so the TextField is visible after a keyboard comes up and covers it. Then the view goes back to normal position once the keyboard is dismissed. Is there an

RE: Moving a textField from under keyboard

2013-06-28 Thread Julius Oklamcak
I'm looking for something OR some method that knows how to change (I think) the position (I think) of the view containing a UITextField so the TextField is visible after a keyboard comes up and covers it. Then the view goes back to normal position once the keyboard is dismissed. Is there an