My app has a UINavigationController.
All the controllers I push onto the navigation controller inherit from a base class that in ViewDidAppear() adds a couple of UIBarButtonItems and sets the navigation controller’s toolbar (UINavigationController.Toolbar property) to be visible.
Works but whenever a new controller is pushed, the buttons are faded out, just to reappear again when the new controller has been pushed.
Can I prevent the buttons to be removed in the first place?
My app has a UINavigationController . All the controllers I push onto the navigation
Share
Figured out myself…I called the SetToolbarItems() on the navigation controller instead of the view that currently gets added.