isTransparentFocusItem property
bool
get
isTransparentFocusItem
If this returns YES, the focus item is considered transparent in terms of occlusion. Items that are behind it are focusable. This value is ignored when the item is focusable, in which case the item is never considered transparent.
Implementation
bool get isTransparentFocusItem {
objc.checkOsVersionInternal('UIView.isTransparentFocusItem', iOS: (false, (15, 0, 0)));
if (!objc.respondsToSelector(this.ref.pointer, _sel_isTransparentFocusItem)) {
throw objc.UnimplementedOptionalMethodException('UIView', 'isTransparentFocusItem');
}
return _objc_msgSend_91o635(this.ref.pointer, _sel_isTransparentFocusItem);
}