unselectedItemTintColor property
UIColor?
get
unselectedItemTintColor
Unselected items in this tab bar will be tinted with this color. Setting this value to nil indicates that UITabBar should use its default value instead.
Implementation
UIColor? get unselectedItemTintColor {
objc.checkOsVersionInternal('UITabBar.unselectedItemTintColor', iOS: (false, (10, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_unselectedItemTintColor);
return $ret.address == 0 ? null : UIColor.fromPointer($ret, retain: true, release: true);
}
set
unselectedItemTintColor
(UIColor? value)
Unselected items in this tab bar will be tinted with this color. Setting this value to nil indicates that UITabBar should use its default value instead.
Implementation
set unselectedItemTintColor(UIColor? value) {
objc.checkOsVersionInternal('UITabBar.setUnselectedItemTintColor:', iOS: (false, (10, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setUnselectedItemTintColor_, value?.ref.pointer ?? ffi.nullptr);
}