But I tried with vertical, it works great for me, Below is a screenshot. Let me know. if I am mistaken, and below is the code: -

NSString *allTheText = [tv string]; NSFont *font = [NSFont fontWithName:@"Helvetica" size:24]; NSMutableParagraphStyle *mutParaStyle=[[NSMutableParagraphStyle alloc] init]; [mutParaStyle setAlignment:kCTTextAlignmentRight]; [mutParaStyle setLineBreakMode:NSLineBreakByWordWrapping]; NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:font ,NSFontAttributeName,mutParaStyle ,NSParagraphStyleAttributeName,nil]; NSMutableAttributedString *strText = [[NSMutableAttributedString alloc] initWithString:allTheText attributes:attrsDictionary]; [tv .textStorage appendAttributedString:strText];
source share