The first screen shot is taken before playing the video in full screen.

The second is taken after the video is open in full screen and closed.

Any idea why the navigation toolbar is expanding?
Note. The hamburger button is not part of the navigation element. It is fake in overlay in the parent object that contains the child controller inside the standard container.
Nothing special inside the source:
override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. bbiListic = UIBarButtonItem(image: UIImage(identifier: .IcoHeaderListic), style: .Plain, target: self, action: #selector(UIViewController.showListic)) bbiFavorite = UIBarButtonItem(image: UIImage(identifier: .IcoHeaderStarEmpty), style: .Plain, target: self, action: #selector(LiveDogadjajViewController.toggleFavorite(_:))) ... let items = [bbiListic!,bbiFavorite!] navigationItem.rightBarButtonItems = items } func someRefresh() { var items = [UIBarButtonItem]() items.append(bbiListic!) ... navigationItem.rightBarButtonItems = items }
Update:
This seems to be a problem only in the latest version of iOS 9.3
ios uinavigationbar
Prcela
source share