summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPinchGesture.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLPinchGesture.h')
-rw-r--r--SmartDeviceLink/SDLPinchGesture.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/SmartDeviceLink/SDLPinchGesture.h b/SmartDeviceLink/SDLPinchGesture.h
index c7e7cb577..69ffec09a 100644
--- a/SmartDeviceLink/SDLPinchGesture.h
+++ b/SmartDeviceLink/SDLPinchGesture.h
@@ -10,15 +10,19 @@
#import "SDLTouch.h"
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLPinchGesture : NSObject
- (instancetype)initWithFirstTouch:(SDLTouch*)firstTouch secondTouch:(SDLTouch*)secondTouch;
-@property (nonatomic, strong) SDLTouch* firstTouch;
-@property (nonatomic, strong) SDLTouch* secondTouch;
+@property (nonatomic, copy) SDLTouch* firstTouch;
+@property (nonatomic, copy) SDLTouch* secondTouch;
-@property (nonatomic, readonly) CGFloat distance;
-@property (nonatomic, readonly) CGPoint center;
-@property (nonatomic, readonly) BOOL isValid;
+@property (nonatomic, assign, readonly) CGFloat distance;
+@property (nonatomic, assign, readonly) CGPoint center;
+@property (nonatomic, assign, readonly) BOOL isValid;
@end
+
+NS_ASSUME_NONNULL_END \ No newline at end of file