hidesBarsWhenVerticallyCompact property
bool
get
hidesBarsWhenVerticallyCompact
When the UINavigationController's vertical size class is compact, hide the UINavigationBar and UIToolbar. Unhandled taps in the regions that would normally be occupied by these bars will reveal the bars.
Implementation
bool get hidesBarsWhenVerticallyCompact {
objc.checkOsVersionInternal('UINavigationController.hidesBarsWhenVerticallyCompact', iOS: (false, (8, 0, 0)));
return _objc_msgSend_91o635(this.ref.pointer, _sel_hidesBarsWhenVerticallyCompact);
}
set
hidesBarsWhenVerticallyCompact
(bool value)
When the UINavigationController's vertical size class is compact, hide the UINavigationBar and UIToolbar. Unhandled taps in the regions that would normally be occupied by these bars will reveal the bars.
Implementation
set hidesBarsWhenVerticallyCompact(bool value) {
objc.checkOsVersionInternal('UINavigationController.setHidesBarsWhenVerticallyCompact:', iOS: (false, (8, 0, 0)));
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setHidesBarsWhenVerticallyCompact_, value);
}