This notification tells an app to update the AddSubMenu or its ‘sub’ AddCommand and AddSubMenus with the requested data
@since SDL 7.0
- (nonnull instancetype)initWithMenuID:(UInt32)menuID;
init(menuID: UInt32)
- @(menuID)
A SDLOnUpdateSubMenu object
- (nonnull instancetype)initWithMenuID:(UInt32)menuID
updateSubCells:
(nullable NSNumber<SDLBool> *)updateSubCells;
init(menuID: UInt32, updateSubCells: (NSNumber & SDLBool)?)
- @(menuID)
- updateSubCells
A SDLOnUpdateSubMenu object
This menuID must match a menuID in the current menu structure {“num_min_value”: 0, “num_max_value”: 2000000000}
@property (nonatomic, strong) NSNumber<SDLUInt> *_Nonnull menuID;
var menuID: NSNumber & SDLUInt { get set }
If not set, assume false. If true, the app should send AddCommands with parentIDs matching the menuID. These AddCommands will then be attached to the submenu and displayed if the submenu is selected.
@property (nonatomic, strong, nullable) NSNumber<SDLBool> *updateSubCells;
var updateSubCells: (NSNumber & SDLBool)? { get set }