summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTurn.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTurn.h')
-rw-r--r--SmartDeviceLink/SDLTurn.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTurn.h b/SmartDeviceLink/SDLTurn.h
index 3b3a5b50a..f895d07eb 100644
--- a/SmartDeviceLink/SDLTurn.h
+++ b/SmartDeviceLink/SDLTurn.h
@@ -5,12 +5,15 @@
@class SDLImage;
+NS_ASSUME_NONNULL_BEGIN
@interface SDLTurn : SDLRPCStruct
-- (instancetype)initWithNavigationText:(NSString *)navigationText turnIcon:(SDLImage *)icon;
+- (instancetype)initWithNavigationText:(nullable NSString *)navigationText turnIcon:(nullable SDLImage *)icon;
-@property (strong) NSString *navigationText;
-@property (strong) SDLImage *turnIcon;
+@property (strong, nonatomic, nullable) NSString *navigationText;
+@property (strong, nonatomic, nullable) SDLImage *turnIcon;
@end
+
+NS_ASSUME_NONNULL_END