hidesBarsWhenKeyboardAppears property
bool
get
hidesBarsWhenKeyboardAppears
When the keyboard appears, the navigation controller's navigationBar toolbar will be hidden. The bars will remain hidden when the keyboard dismisses, but a tap in the content area will show them.
Implementation
bool get hidesBarsWhenKeyboardAppears {
objc.checkOsVersionInternal('UINavigationController.hidesBarsWhenKeyboardAppears', iOS: (false, (8, 0, 0)));
return _objc_msgSend_91o635(object$.ref.pointer, _sel_hidesBarsWhenKeyboardAppears);
}
set
hidesBarsWhenKeyboardAppears
(bool value)
When the keyboard appears, the navigation controller's navigationBar toolbar will be hidden. The bars will remain hidden when the keyboard dismisses, but a tap in the content area will show them.
Implementation
set hidesBarsWhenKeyboardAppears(bool value) {
objc.checkOsVersionInternal('UINavigationController.setHidesBarsWhenKeyboardAppears:', iOS: (false, (8, 0, 0)));
_objc_msgSend_1s56lr9(object$.ref.pointer, _sel_setHidesBarsWhenKeyboardAppears_, value);
}