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(this.ref.pointer, _sel_focusGroupIdentifier);
  return _ret.address == 0 ? null : objc.NSString.castFromPointer(_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(this.ref.pointer, _sel_setFocusGroupIdentifier_, value?.ref.pointer ?? ffi.nullptr);
}