From c989e1ac06bd25297aecbe906e9f3d6096a8890b Mon Sep 17 00:00:00 2001 From: Garrett Moon Date: Tue, 13 Dec 2022 14:18:13 -0800 Subject: [PATCH] Switch UITextWritingDirection to NSWritingDirection (#2071) --- Source/TextExperiment/Component/ASTextInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TextExperiment/Component/ASTextInput.h b/Source/TextExperiment/Component/ASTextInput.h index 9a6cbd13d..e0a6ea1f0 100644 --- a/Source/TextExperiment/Component/ASTextInput.h +++ b/Source/TextExperiment/Component/ASTextInput.h @@ -75,7 +75,7 @@ typedef NS_ENUM(NSInteger, ASTextAffinity) { @interface ASTextSelectionRect : UITextSelectionRect @property (nonatomic) CGRect rect; -@property (nonatomic) UITextWritingDirection writingDirection; +@property (nonatomic) NSWritingDirection writingDirection; @property (nonatomic) BOOL containsStart; @property (nonatomic) BOOL containsEnd; @property (nonatomic) BOOL isVertical;