2

我正在努力寻找一种优雅的方式来以垂直方式显示表格视图的列标题(从传统方式逆时针旋转 90 度)。我不喜欢把它作为一个实际的 NSTableHeaderCell 来做,我认为通过覆盖 NSTextFieldCell 或 NSCell 可能更容易做到这一点。

单元格仅包含不可编辑的文本,但通常是两行,并且有时会根据上下文与列的其余部分着色。

我似乎找不到任何这样做的可可应用程序,更不用说开源示例了。有什么想法吗?

4

1 回答 1

2
#import "VerticalTextCell.h"

@implementation VerticalTextCell

- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {

    NSMutableDictionary *atr = [NSMutableDictionary dictionary];
    NSFont *font = [NSFont fontWithName:@"Lucida Grande" size:12];
    [atr setObject:font forKey:NSFontAttributeName];

    [[[self backgroundColor] colorWithAlphaComponent:0.7] set];
    NSRectFillUsingOperation(cellFrame, NSCompositeSourceOver);

    NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
    [currentContext saveGraphicsState];

    NSAffineTransform *transform = [NSAffineTransform transform];
    [transform translateXBy:NSMinX(cellFrame) yBy:NSMinY(cellFrame)];
    [transform rotateByDegrees:-90];
    [transform concat];

    // vertical inset 5 pixels
    [[self stringValue] drawInRect:NSMakeRect(-NSHeight(cellFrame),5,NSHeight(cellFrame),NSWidth(cellFrame)) withAttributes:atr]; 

    [currentContext restoreGraphicsState];

}


@end
于 2010-05-02T16:27:45.947 回答