focusGroupIdentifier property
NSString?
get
focusGroupIdentifier
The identifier of the focus group that this view controller belongs to. If this is nil, the view controller inherits the focus group of its parent focus environment.
Implementation
objc.NSString? get focusGroupIdentifier {
objc.checkOsVersionInternal('UIViewController.focusGroupIdentifier', iOS: (false, (15, 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 controller belongs to. If this is nil, the view controller inherits the focus group of its parent focus environment.
Implementation
set focusGroupIdentifier(objc.NSString? value) {
objc.checkOsVersionInternal('UIViewController.setFocusGroupIdentifier:', iOS: (false, (15, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setFocusGroupIdentifier_, value?.ref.pointer ?? ffi.nullptr);
}