summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTextField.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 13:01:10 -0500
committerGitHub <noreply@github.com>2017-01-18 13:01:10 -0500
commitaef328f494aea84367af8d0d800253dfe38044b1 (patch)
tree3fa13494f9dce02600f48271545d3ad7d45634cb /SmartDeviceLink/SDLTextField.h
parent894c34a05235f49e527df72f7f95a4cc62ca0afd (diff)
parentb308fba485164a8b63b199e02f02474694e0d3ce (diff)
downloadsdl_ios-aef328f494aea84367af8d0d800253dfe38044b1.tar.gz
Merge pull request #492 from smartdevicelink/feature/sdl_0009_prefer_nonatomic
[SDL 0009] Prefer nonatomic properties
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