This is an unconventional setup and I appreciate that but I have added a UITableViewController as a child view controller in a UITableViewCell of another UITableView. Wow, yes. It's a complex view and it is being reused in multiple places, the code is clean and it works 98% so I'm reasonably happy.
The problem is when one of the textfields in my Franken-TableViewController becomes first responder. Because the controller doesn't know where it is, or the fact that it is in a tableview cell the tableview scrolls to the wrong offset. I obviously want the auto scrolling behaviour provided by the UITableViewController but I realise I will have to assist it figuring out where to scroll to.
I'm not sure what parameters the UITableViewController is looking at to determine where to scroll to. This article is discussing a very similar problem and also the fact that the content is only evaluated a single subview deep. Extra Space When Embedding Table Views
Suggestions how I can get around this without refactoring away using UITableViewController?