Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion Libraries/Text/TextInput/RCTBaseTextInputView.m
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,19 @@ - (NSString *)text

- (void)setText:(NSString *)text
{
[self setAttributedText:[[NSAttributedString alloc] initWithString: text]];
if (self.attributedText.length > 0) {
//copy the attributes
NSRange range = NSMakeRange(self.attributedText.length-1, self.attributedText.length);
NSDictionary *attributes = [self.attributedText attributesAtIndex:0 effectiveRange:&range];
NSMutableAttributedString *newString = [[NSMutableAttributedString alloc] initWithString:text attributes:attributes];
NSMutableAttributedString *primaryStringMutable = [[NSMutableAttributedString alloc] initWithAttributedString:self.attributedText];

//change the string
[primaryStringMutable setAttributedString:newString];
[self setAttributedText:[[NSAttributedString alloc] initWithAttributedString:primaryStringMutable]];
} else {
[self setAttributedText:[[NSAttributedString alloc] initWithString: text]];
}
}

- (NSAttributedString *)attributedText
Expand Down