Scenario
- NavigationController is a root controller of a TabBarController
- TabBarController has 2 UIViewControllers
- One UIViewController has a function that presents another UIViewController
- UIVIewController that is presented has a StackView
- Instantiates a subclass of FormController (eg: FormVC) and adds to Stack as subview
Problem
The keyboardWillShow
function of FormVC does not get called. The keyboard actually adds the input to the row, but the auto scrolling does not happen
Is this only a problem in Eureka or perhaps a problem using the Navigation controller's pushViewController
?