让TextField输入完后按右下角的键,切换到下一TextField
方法:将TextField的Did End On Exit事件绑定一个
1 - (IBAction)goNextAction:(id)sender { 2 [userTextField becomeFirstResponder]; 3 4 5 6 }
关键就是becomeFirstResponder
1 - (IBAction)goNextAction:(id)sender { 2 [userTextField becomeFirstResponder]; 3 4 5 6 }
关键就是becomeFirstResponder
转载于:https://www.cnblogs.com/jimmySayHiToWorld/p/3227018.html