summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTextField.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTextField.h')
-rw-r--r--SmartDeviceLink/SDLTextField.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLTextField.h b/SmartDeviceLink/SDLTextField.h
index c1ded2138..2546b2cf1 100644
--- a/SmartDeviceLink/SDLTextField.h
+++ b/SmartDeviceLink/SDLTextField.h
@@ -68,7 +68,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* Required
*/
-@property (strong) SDLTextFieldName name;
+@property (strong, nonatomic) SDLTextFieldName name;
/**
* @abstract The character set that is supported in this field.
@@ -77,21 +77,21 @@ NS_ASSUME_NONNULL_BEGIN
*
* 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