I have label in my custom cell. That cell i have display with a table view. Now i have problem is that when text of label is more wider than cell width then text cross cell width. So how summarize that text so that after a sufficient length text show .... How do that? Thanks in advance..

link|improve this question

65% accept rate
feedback

3 Answers

up vote 0 down vote accepted

If you have only one line, you can also use

label.adjustsFontSizeToFitWidth = YES;

to reduce the size of the font to fit the text. This will work as long as the necessary font size is not less than the label's minimumFontSize property.

link|improve this answer
feedback

You can use a UILabel and set its frame to the rectangle that you would like the text to be displayed. You can set the numberOfLines property. The end of the text will be automatically truncated for you and replaced with "..." .

link|improve this answer
feedback

Do this to your label

label.lineBreakMode = UILineBreakModeTailTruncation;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.