Objective-cでは、キーボードを設定becomeFirstResponder
するUITextField
と、下から上にスライドします。
このアニメーションを無効にする方法はありますか?
Objective-cでは、キーボードを設定becomeFirstResponder
するUITextField
と、下から上にスライドします。
このアニメーションを無効にする方法はありますか?
このように、アニメーションプロセスの間にこれを行います
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.0];
[UIView setAnimationDelay:0.0];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
[textField becomeFirstResponder];
[UIView commitAnimations];
上記が何らかの理由で機能しない場合は、通知を使用できます