Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > Centering Strings in NSView

Centering Strings in NSView
Thread Tools
Mac Elite
Join Date: May 2002
Location: New York City
Status: Offline
Reply With Quote
Jun 8, 2003, 06:30 PM
 
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.
     
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status: Offline
Reply With Quote
Jun 8, 2003, 07:26 PM
 
Use NSString's sizeWithAttributes: method to get the string's size, and subtract half of those measurements from the measurements you already have above. So something like this:
Code:
NSSize stringSize = [string sizeWithAttributes:attribs]; [string drawAtPoint:NSMakePoint(bounds.size.width/2 - stringSize.width/2, bounds.size.height/2 - stringSize.height/2) withAttributes:attribs];
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
     
zachs  (op)
Mac Elite
Join Date: May 2002
Location: New York City
Status: Offline
Reply With Quote
Jun 8, 2003, 07:57 PM
 
Great! Thanks, that worked.
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 03:40 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2