focusGroupIdentifier property

NSString? get focusGroupIdentifier

The identifier of the focus group that this view belongs to. If this is nil, subviews inherit their superview's focus group.

Implementation

objc.NSString? get focusGroupIdentifier {
  objc.checkOsVersionInternal('UIView.focusGroupIdentifier', iOS: (false, (14, 0, 0)));
  final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_focusGroupIdentifier);
  return $ret.address == 0 ? null : objc.NSString.fromPointer($ret, retain: true, release: true);
}
set focusGroupIdentifier (NSString? value)

The identifier of the focus group that this view belongs to. If this is nil, subviews inherit their superview's focus group.

Implementation

set focusGroupIdentifier(objc.NSString? value) {
  objc.checkOsVersionInternal('UIView.setFocusGroupIdentifier:', iOS: (false, (14, 0, 0)));
  _objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setFocusGroupIdentifier_, value?.ref.pointer ?? ffi.nullptr);
}