Work around:
UIViewController
contains UITableview with custom cell. Each cell contains cusom UIView with UITextField.
We all know that it is possible to manage UITextField delegates and make UIView up/down to show UITextField that are not visible when keyboard appears.
Problem:
Here content of UITableView is dynamic, its decided runtime that which cell contains UITextField.
I have tried many solution for keyboard up/down views. But still some issues remains.
So now decided to make a translation only for that UITextField which are not appear on screen or behind the keyboard.
Is there any way to know that
UITextField which is responder of keyboard appearance is behind the keyboard or its above the keyboard?
Any better approach?
Please add a comment if question is unclear.