For example, I have 3 sentences such as @"Long long ago.",@"There is a child.",@"bla bla bla" And I made a method below
- (void)appendText:(NSString*)text
{
NSMutableAttributedString *originalText = [[NSMutableAttributedString alloc] initWithAttributedString:_textView.attributedText];
NSAttributedString *appendText = [[NSAttributedString alloc] initWithString:text
attributes:@{NSForegroundColorAttributeName:DefaultTextColor}];
[originalText appendAttributedString:appendText];
_textView.attributedText = originalText;
}
So I invoked appendText 3 times
[self appendText:@"Long long ago."];
[self appendText:@"There is a child."];
[self appendText:@"bla bla bla."];
The result I expected is
Long long ago.There is a child.bla bla bla.
But the output is
Long long ago.
There is a child.
bla bla bla
Why appendAttributedString show appended string in a new line? How can I put the appended text in one paragraph?
Thanks for any help.