Show UIKeyboard without animation

cocoa-touch, ios, iphone, objective-c, uikeyboard

Solution

do this it in between animation process, like this

[UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.0];
    [UIView setAnimationDelay:0.0];
    [UIView setAnimationCurve:UIViewAnimationCurveLinear];

    [textField becomeFirstResponder];

    [UIView commitAnimations];

if above not works for any reason then you can use notifications

see this link

Problem

In objective-c when you set `becomeFirstResponder` on `UITextField` the keyboard comes sliding up from the bottom. Is there any way to disable this animation?

Original source

Related problems