I have a simple ios project that has a set of inputs like this:
currently, i use this TPKeyboardAvoiding library which allows on click of an input the keyboard appears and i can click next and tab through the inputs in the following order
however i need to order it down over, like so:
currently the code just finds the next possible UITextField, i've read an example on how to navigate to the next input using tags and incrementing them, this was found here.
However the above example uses the textFieldShouldReturn method:
-(BOOL)textFieldShouldReturn:(UITextField*)textField; {
which is already used in the TPKeyboardAvoiding library, i don't really want to edit or over-ride this functionality, so i was wondering if it was possible to create some kind of work around that groups each column of inputs, so when the original textFieldShouldReturn
method finds the next possible input, it only searches in the current 'group'.
any suggestions would be great