hidesBarsOnSwipe property
bool
get
hidesBarsOnSwipe
When the user swipes, the navigation controller's navigationBar & toolbar will be hidden (on a swipe up) or shown (on a swipe down). The toolbar only participates if it has items.
Implementation
bool get hidesBarsOnSwipe {
objc.checkOsVersionInternal('UINavigationController.hidesBarsOnSwipe', iOS: (false, (8, 0, 0)));
return _objc_msgSend_91o635(this.ref.pointer, _sel_hidesBarsOnSwipe);
}
set
hidesBarsOnSwipe
(bool value)
When the user swipes, the navigation controller's navigationBar & toolbar will be hidden (on a swipe up) or shown (on a swipe down). The toolbar only participates if it has items.
Implementation
set hidesBarsOnSwipe(bool value) {
objc.checkOsVersionInternal('UINavigationController.setHidesBarsOnSwipe:', iOS: (false, (8, 0, 0)));
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setHidesBarsOnSwipe_, value);
}