hidesBarsOnTap property

bool get hidesBarsOnTap

When the user taps, the navigation controller's navigationBar & toolbar will be hidden or shown, depending on the hidden state of the navigationBar. The toolbar will only be shown if it has items to display.

Implementation

bool get hidesBarsOnTap {
  objc.checkOsVersionInternal('UINavigationController.hidesBarsOnTap', iOS: (false, (8, 0, 0)));
  return _objc_msgSend_91o635(object$.ref.pointer, _sel_hidesBarsOnTap);
}
set hidesBarsOnTap (bool value)

When the user taps, the navigation controller's navigationBar & toolbar will be hidden or shown, depending on the hidden state of the navigationBar. The toolbar will only be shown if it has items to display.

Implementation

set hidesBarsOnTap(bool value) {
  objc.checkOsVersionInternal('UINavigationController.setHidesBarsOnTap:', iOS: (false, (8, 0, 0)));
  _objc_msgSend_1s56lr9(object$.ref.pointer, _sel_setHidesBarsOnTap_, value);
}