tags:

views:

21

answers:

1

Hi,

I have an NSString object having string content as "Abc". It has font name, type and size as "Arial", "Bold" and "12.0" respectively.

How can i know the bounding rect of the the said string.

+3  A: 

NSString has a boundingRectWithSize:options:attributes: method.

diciu