From 42d6323fe00f058d375c42f44f14394f9e471552 Mon Sep 17 00:00:00 2001 From: Valentin Shergin Date: Wed, 19 Jul 2017 17:12:04 -0700 Subject: [PATCH] TextInput: Actual `reactAccessibilityElement` implementation Summary: Because of some rebase issue `reactAccessibilityElement` was implemented with old invalid name, which breaks some accessibility features. Reviewed By: mmmulani Differential Revision: D5458283 fbshipit-source-id: 1e66a2f54c1f1a85118c9432b68895679a10059c --- Libraries/Text/RCTTextInput.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Text/RCTTextInput.m b/Libraries/Text/RCTTextInput.m index 4038c54c9..3833008fc 100644 --- a/Libraries/Text/RCTTextInput.m +++ b/Libraries/Text/RCTTextInput.m @@ -237,7 +237,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)initWithFrame:(CGRect)frame) #pragma mark - Accessibility -- (UIView *)reactAccessibleView +- (UIView *)reactAccessibilityElement { return self.backedTextInputView; }