summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTextField.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTextField.h')
-rw-r--r--SmartDeviceLink/SDLTextField.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLTextField.h b/SmartDeviceLink/SDLTextField.h
index b4ba0ea4f..2546b2cf1 100644
--- a/SmartDeviceLink/SDLTextField.h
+++ b/SmartDeviceLink/SDLTextField.h
@@ -56,6 +56,9 @@
*
* @since SDL 1.0
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLTextField : SDLRPCStruct
/**
@@ -65,7 +68,7 @@
*
* Required
*/
-@property (strong) SDLTextFieldName name;
+@property (strong, nonatomic) SDLTextFieldName name;
/**
* @abstract The character set that is supported in this field.
@@ -74,20 +77,22 @@
*
* Required
*/
-@property (strong) SDLCharacterSet characterSet;
+@property (strong, nonatomic) SDLCharacterSet characterSet;
/**
* @abstract The number of characters in one row of this field.
*
* Required, Integer 1 - 500
*/
-@property (strong) NSNumber<SDLInt> *width;
+@property (strong, nonatomic) NSNumber<SDLInt> *width;
/**
* @abstract The number of rows for this text field.
*
* Required, Integer 1 - 8
*/
-@property (strong) NSNumber<SDLInt> *rows;
+@property (strong, nonatomic) NSNumber<SDLInt> *rows;
@end
+
+NS_ASSUME_NONNULL_END