summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDisplayCapabilities.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
commit55850b04dca4b6d11e3a7fcac42d1e1708a36bdf (patch)
treed9f444d1fc9ddd1faf28647ff171202f86df1a32 /SmartDeviceLink/SDLDisplayCapabilities.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLDisplayCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLDisplayCapabilities.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/SmartDeviceLink/SDLDisplayCapabilities.h b/SmartDeviceLink/SDLDisplayCapabilities.h
index 0e12ff682..d5d7f902a 100644
--- a/SmartDeviceLink/SDLDisplayCapabilities.h
+++ b/SmartDeviceLink/SDLDisplayCapabilities.h
@@ -22,7 +22,7 @@
*
* Required
*/
-@property (strong) SDLDisplayType displayType;
+@property (strong, nonatomic) SDLDisplayType displayType;
/**
* @abstract An array of SDLTextField structures, each of which describes a field in the HMI which the application can write to using operations such as *SDLShow*, *SDLSetMediaClockTimer*, etc.
@@ -33,7 +33,7 @@
*
* Required, Array of SDLTextField, 1 - 100 objects
*/
-@property (strong) NSMutableArray<SDLTextField *> *textFields;
+@property (strong, nonatomic) NSMutableArray<SDLTextField *> *textFields;
/**
* @abstract An array of SDLImageField elements
@@ -44,7 +44,7 @@
*
* Optional, Array of SDLImageField, 1 - 100 objects
*/
-@property (strong) NSMutableArray<SDLImageField *> *imageFields;
+@property (strong, nonatomic) NSMutableArray<SDLImageField *> *imageFields;
/**
* @abstract An array of SDLMediaClockFormat elements, defining the valid string formats used in specifying the contents of the media clock field
@@ -53,7 +53,7 @@
*
* Required, Array of SDLMediaClockFormats, 0 - 100 objects
*/
-@property (strong) NSMutableArray<SDLMediaClockFormat> *mediaClockFormats;
+@property (strong, nonatomic) NSMutableArray<SDLMediaClockFormat> *mediaClockFormats;
/**
* @abstract The display's persistent screen supports.
@@ -62,7 +62,7 @@
*
* Required, Boolean
*/
-@property (strong) NSNumber<SDLBool> *graphicSupported;
+@property (strong, nonatomic) NSNumber<SDLBool> *graphicSupported;
/**
* @abstract Number of presets the screen supports
@@ -71,20 +71,20 @@
*
* Optional, Array of String, max string size 100, 0 - 100 objects
*/
-@property (strong) NSMutableArray<NSString *> *templatesAvailable;
+@property (strong, nonatomic) NSMutableArray<NSString *> *templatesAvailable;
/**
* @abstract A set of all parameters related to a prescribed screen area (e.g. for video / touch input)
*
* Optional
*/
-@property (strong) SDLScreenParams *screenParams;
+@property (strong, nonatomic) SDLScreenParams *screenParams;
/**
* @abstract The number of on-screen custom presets available (if any); otherwise omitted
*
* Optional, Integer 1 - 100
*/
-@property (strong) NSNumber<SDLInt> *numCustomPresetsAvailable;
+@property (strong, nonatomic) NSNumber<SDLInt> *numCustomPresetsAvailable;
@end