OK, this may be a dumb question, but here goes:
How do I
center strings in NSView? Right now I have:
Code:
[string drawAtPoint:NSMakePoint((bounds.size.width/2.0),
(bounds.size.height/2.0))
withAttributes:attribs];
But this just
begins the string at the center. How do I make it so that the whole thing is centered?
Thanks for your help.