A help item for voice commands, used locally in interaction lists and globally
Convenience init to create a VR help item with the following parameters
- (nonnull instancetype)initWithText:(nonnull NSString *)text
image:(nullable SDLImage *)image;
init(text: String, image: SDLImage?)
Text to display for VR Help item
Image for VR Help item
An SDLVRHelpItem object
Convenience init to create a VR help item with all parameters
- (nonnull instancetype)initWithText:(nonnull NSString *)text
image:(nullable SDLImage *)image
position:(UInt8)position;
init(text: String, image: SDLImage?, position: UInt8)
Text to display for VR Help item
Image for VR Help item
Position to display item in VR Help list
An SDLVRHelpItem object
Text to display for VR Help item
Required
@property (nonatomic, strong) NSString *_Nonnull text;
var text: String { get set }
Image for VR Help item
Optional
@property (nonatomic, strong, nullable) SDLImage *image;
var image: SDLImage? { get set }
Position to display item in VR Help list
Required
@property (nonatomic, strong) NSNumber<SDLInt> *_Nonnull position;
var position: NSNumber & SDLInt { get set }