Updates the list of next maneuvers, which can be requested by the user pressing the softbutton
Convenience init to update a list of maneuvers for navigation
- (nonnull instancetype)initWithTurnList:(nullable NSArray<SDLTurn *> *)turnList
softButtons:(nullable NSArray<SDLSoftButton *> *)
softButtons;
init(turnList: [SDLTurn]?, softButtons: [SDLSoftButton]?)
A struct used in UpdateTurnList for Turn-by-Turn navigation applications
An array of softbuttons
Optional, SDLTurn, 1 - 100 entries
@property (nonatomic, strong, nullable) NSArray<SDLTurn *> *turnList;
var turnList: [SDLTurn]? { get set }
Required, SDLSoftButton, 0 - 1 Entries
@property (nonatomic, strong, nullable) NSArray<SDLSoftButton *> *softButtons;
var softButtons: [SDLSoftButton]? { get set }