When using [NSString boundingRectWithSize:options:attributes] the size of the rect that is returned is taller than I would expect for certain strings. The height re
[NSString boundingRectWithSize:options:attributes]
You might want to use NSStringDrawingUsesDeviceMetrics in the options. From the docs:
NSStringDrawingUsesDeviceMetrics
NSStringDrawingUsesDeviceMetrics Use the image glyph bounds (instead of the typographic bounds) when computing layout.
Use the image glyph bounds (instead of the typographic bounds) when computing layout.