From 4233b570952751945a3f066f35595fbcaec2b0ae Mon Sep 17 00:00:00 2001
From: Joel Fischer
HMI Status Requirements:
+ HMI Status Requirements:
SeeSection Contents
-
HMILevel:
@@ -46,56 +43,14 @@
@since SDL 1.0
Constructs a newly allocated SDLOnButtonEvent object
- - - -- (instancetype)init;
-
-
- init!()
-
-
-
-
- @abstract Constructs a newly allocated SDLOnButtonEvent object indicated by the dictionary parameter
- - - -- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
-
-
- init!(dictionary dict: NSMutableDictionary!)
-
-
-
- The dictionary to use
-@property (readwrite, strong, atomic) SDLButtonName *buttonName;
+ @property (readwrite, strong, nonatomic) SDLButtonName _Nonnull buttonName;
var buttonName: SDLButtonName! { get set }
+ var buttonName: SDLButtonName { get set }
@@ -123,11 +78,12 @@
@property (readwrite, strong, atomic) SDLButtonEventMode *buttonEventMode;
+ @property (readwrite, strong, nonatomic)
+ SDLButtonEventMode _Nonnull buttonEventMode;
var buttonEventMode: SDLButtonEventMode! { get set }
+ var buttonEventMode: SDLButtonEventMode { get set }
@@ -145,11 +101,12 @@
@property (readwrite, strong, atomic) NSNumber *customButtonID;
+ @property (readwrite, strong, nonatomic, nullable)
+ NSNumber<SDLInt> *customButtonID;
var customButtonID: NSNumber! { get set }
+ var customButtonID: (NSNumber
--
cgit v1.2.1