I have a NIB file with a UIView, a couple of UIImageView's (including a logo) and a UITableView inset within the UIView below the logo where I allow users to input a username/password to login to my application. I also have a third arbitrary UITextField within a UITableViewCell below the username/password. The problem is, when it is clicked, the keyboard covers the entire row.
I've used -scrollToRowAtIndexPath:atScrollPosition:animated:
in other parts of my application successfully, but the difference there is my UITableView covered the entire height/width of the content view, so the scrolling worked. Here it doesn't scroll at all, and I'm going to guess because the UITableView is inset within the UIView.
Any suggestions on how to get the appropriate behavior would be much appreciated.