vote up 2 vote down star
1

How can I draw a string centred within a rect?

I've started off with: (an extract from the drawRect method of my custom view)

NSString* theString = ...
[theString drawInRect:theRect withAttributes:0];
[theString release];

Now I'm assuming I need to set up some attributes. I've had a look through Apple's Cocoa documentation, but it's a bit overwhelming and can't find anything for how to add paragraph styles to the attributes.

Also, I can only find horizontal alignment, what about vertical alignment?

Thanks.

flag

3 Answers

vote up 6 vote down check

Vertical alignment you'll have to do yourself ((height of view + height of string)/2). Horizontal alignment you can do with:

NSMutableParagraphStyle *style = [NSMutableParagraphStyle defaultParagraphStyle];
[style setAlignment:NSCenterTextAlignment];
NSDictionary *attr = [NSDictionary dictionaryWithObject:style andKey:@"NSParagraphStyleAttributeName"];
[myString drawInRect:someRect withAttributes:attr];
link|flag
vote up 0 vote down

[NSMutableParagraphStyle defaultParagraphStyle] won't work use:

[NSMutableParagraphStyle new]

also, it appears horizontal alignment only works for drawInRect, not drawAtPoint (ask me how I know :-)

link|flag
Don't forget to release that object you created using +new. – Peter Hosey Apr 28 at 3:30
vote up 1 vote down

Well, drawInRect is only good for basic text drawing (in other words, the system decides where to position your text) - often the only way to draw text positioned where you want is to simply calculate what point you want it at and use NSString's drawAtPoint:withAttributes:.

Also, NSString's sizeWithAttributes is hugely useful in any positioning math you end up having to do for drawAtPoint.

Good luck!

link|flag

Your Answer

Get an OpenID
or

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