standardAppearance property
UITabBarAppearance
get
standardAppearance
Describes the appearance attributes for the tab bar to use.
Implementation
UITabBarAppearance get standardAppearance {
objc.checkOsVersionInternal('UITabBar.standardAppearance', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_standardAppearance);
return UITabBarAppearance.fromPointer($ret, retain: true, release: true);
}
set
standardAppearance
(UITabBarAppearance value)
Describes the appearance attributes for the tab bar to use.
Implementation
set standardAppearance(UITabBarAppearance value) {
objc.checkOsVersionInternal('UITabBar.setStandardAppearance:', iOS: (false, (13, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setStandardAppearance_, value.ref.pointer);
}