Skip to content

Instantly share code, notes, and snippets.

@bleft
Created July 22, 2014 14:40
Show Gist options
  • Save bleft/587ffa4745800bf4a671 to your computer and use it in GitHub Desktop.
Save bleft/587ffa4745800bf4a671 to your computer and use it in GitHub Desktop.
set maximum number of lines on UITextView
// the following snippet sets the number of lines to 1
myTextView.attributedText = [[NSAttributedStringalloc] initWithString:@"my too long text"];
myTextView.textContainer.maximumNumberOfLines = 1;
myTextView.textContainer.lineBreakMode = NSLineBreakByTruncatingTail;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment