• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Setting vertical alignment for a NSTextFieldCell ?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Setting vertical alignment for a NSTextFieldCell ?


  • Subject: Setting vertical alignment for a NSTextFieldCell ?
  • From: Adam Holt <email@hidden>
  • Date: Tue, 26 Jul 2005 22:59:44 +0100

I have an NSTableView that for one of its NSTableColumn's I have created a
new NSTextFieldCell for and assigned it with setDataCell.  The purpose is to
be able to change the font size just for that column of the table.

Here's my code:

- (void)awakeFromNib
{
    NSTextFieldCell *cell;
    cell = [[NSTextFieldCell alloc] init];
    [cell setAlignment:NSCenterTextAlignment];
    [cell setFont:[NSFont fontWithName:@"Lucida Grande" size:20.0]];
    NSTableColumn *desiredColumn = [myTableView
                            tableColumnWithIdentifier:@"3"];
    [desiredColumn setDataCell:cell];
    [cell release];
}


This works as I would expect... to a point.  The problem I have is that as I
use a larger font size, the text drops vertically in the cell so that it
clips at the bottom whilst there is still plenty of space between the top of
the text and the ceiling of the cell.

Is there any way I can vertically align my text?

Cheers...

Adam.


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Setting vertical alignment for a NSTextFieldCell ?
      • From: Ryan Britton <email@hidden>
  • Prev by Date: Re: NSThread, drawing and waiting
  • Next by Date: Re: Running out of memory with Core Data
  • Previous by thread: Re: NSThread, drawing and waiting
  • Next by thread: Re: Setting vertical alignment for a NSTextFieldCell ?
  • Index(es):
    • Date
    • Thread