Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS: how to change the order of UITextField to be focused using IQKeyboardManager

I have placed multiple UITextFields into an UIViewController in the storyboard.
I am using IQKeyboardManager to scroll the UITextFields over the keyboard when they are focused.

IQKeyboardManager toolbar

When I click the next button in the keyboard toolbar, another UITextField is getting focused while the current one loses focus.

How can I control the order of the focus of the UITextFields by the keyboard toolbar buttons?

like image 475
Colin Wang Avatar asked Oct 17 '25 14:10

Colin Wang


1 Answers

Set IQAutoToolbarManageBehaviour

In your case could be

IQKeyboardManager.sharedManager().toolbarManageBehaviour = .byTag

Then add tag to your TextFields

textField1.tag = 1
textField2.tag = 2
textField3.tag = 3
like image 63
Haroldo Gondim Avatar answered Oct 20 '25 03:10

Haroldo Gondim



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!