diff options
Diffstat (limited to 'SmartDeviceLink/SDLScreenParams.h')
-rw-r--r-- | SmartDeviceLink/SDLScreenParams.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLScreenParams.h b/SmartDeviceLink/SDLScreenParams.h index 6236181cf..23c7a16a6 100644 --- a/SmartDeviceLink/SDLScreenParams.h +++ b/SmartDeviceLink/SDLScreenParams.h @@ -6,10 +6,13 @@ @class SDLImageResolution; @class SDLTouchEventCapabilities; +NS_ASSUME_NONNULL_BEGIN @interface SDLScreenParams : SDLRPCStruct -@property (strong) SDLImageResolution *resolution; -@property (strong) SDLTouchEventCapabilities *touchEventAvailable; +@property (strong, nonatomic) SDLImageResolution *resolution; +@property (nullable, strong, nonatomic) SDLTouchEventCapabilities *touchEventAvailable; @end + +NS_ASSUME_NONNULL_END |