barButtonItems property
NSArray
get
barButtonItems
The bar button items associated with this group. Changing these items will affect the bar displaying these items without needing to re-set the groups that are in that bar. Any UIBarButtonItems that are already in group will be removed from that group.
Implementation
objc.NSArray get barButtonItems {
objc.checkOsVersionInternal('UIBarButtonItemGroup.barButtonItems', iOS: (false, (9, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_barButtonItems);
return objc.NSArray.castFromPointer(_ret, retain: true, release: true);
}
set
barButtonItems
(NSArray value)
The bar button items associated with this group. Changing these items will affect the bar displaying these items without needing to re-set the groups that are in that bar. Any UIBarButtonItems that are already in group will be removed from that group.
Implementation
set barButtonItems(objc.NSArray value) {
objc.checkOsVersionInternal('UIBarButtonItemGroup.setBarButtonItems:', iOS: (false, (9, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setBarButtonItems_, value.ref.pointer);
}