vote up 0 vote down star

How to know how much pixels my text is taking in a UILabel ?
I want to insert a small picture in between text.
Can be usefull to adjust my label width.

flag

39% accept rate
In measuring text in AppKit, there are no such things as pixels. The string-measurement methods give you their answers in points. One point is 1/72 of an inch. Currently, these numbers are actually pixels because the window's scaling factor is always 1. Someday, this will change: The scaling factor will reflect the resolution of the screen, and string measurements will be in points, as intended. Quartz Debug lets you change the scaling factor; you can use this to make sure you're ready for that day. – Peter Hosey Sep 6 at 5:11
but it does give me the distance i need to resize my label and put my imageview just after it ?! – CiNN Sep 6 at 9:05

3 Answers

vote up 4 vote down check

There are a few methods in NSString added by UIKit that can give you the dimensions of the string if it were to be drawn. The full reference is here. The methods you care about are probably these:

  • sizeWithFont:
  • sizeWithFont:constrainedToSize:
  • sizeWithFont:constrainedToSize:lineBreakMode:
  • sizeWithFont:forWidth:lineBreakMode:
  • sizeWithFont:minFontSize:actualFontSize:forWidth:lineBreakMode:
link|flag
vote up 1 vote down

-[NSString sizeWithFont:] is part of NSString(UIStringDrawing).

link|flag

Your Answer

Get an OpenID
or

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