From cf975bbd2e46278329c4cb39eab50c5411b68c4b Mon Sep 17 00:00:00 2001 From: Valentin Shergin Date: Mon, 8 May 2017 09:48:33 -0700 Subject: [PATCH] Fixed default placeholder text color for multiline Reviewed By: javache Differential Revision: D5018823 fbshipit-source-id: 6ad4a1e8d03b6429a436e0cfdd9a127cd5dc1c2b --- Libraries/Text/RCTUITextView.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/Text/RCTUITextView.m b/Libraries/Text/RCTUITextView.m index 8288ea71fc8..2498f69124c 100644 --- a/Libraries/Text/RCTUITextView.m +++ b/Libraries/Text/RCTUITextView.m @@ -39,6 +39,7 @@ static UIColor *defaultPlaceholderTextColor() _placeholderView = [[UILabel alloc] initWithFrame:self.bounds]; _placeholderView.isAccessibilityElement = NO; _placeholderView.numberOfLines = 0; + _placeholderView.textColor = defaultPlaceholderTextColor(); [self addSubview:_placeholderView]; }