I implemented a custom UIViewController Transition in my App, which replaces the navigation controllers built in push animation.
Everything works so far, except the topl
I was having an issue where the bottomLayoutGuide
property would set itself to zero length and then would cause my buttons above the tab bar to fall below to tab bar with the autolayout.
Have you looked at doing this
[self.navigationController.view setNeedsLayout]
I put it into my viewwillappear
and I stopped getting a zero length on the bottomLayoutGuide
property. Maybe that would help you out with your topLayoutGuide
property too.