Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement an NSBrowserCell with two text field with one field for displaying file size and another is for displaying file name.

- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
    NSRect sizeFrame, highlightRect, textFrame;
    textFrame=cellFrame;

    textFrame.origin.x+=60;
    textFrame.size.width-=60;

    sizeFrame=cellFrame;
    sizeFrame.size.width=60;
    sizeFrame.origin.x+=1;
    sizeFrame.origin.y+=2;

    NSString *string=self.fileSizeTextField.stringValue;
    if (string==nil) 
    {
        string=@"rrr";
    }
    NSMutableAttributedString *str=[[NSMutableAttributedString alloc] initWithString:string
                                                                      attributes:nil];
    [str addAttribute:NSForegroundColorAttributeName value:[NSColor redColor]range:NSMakeRange(0,string.length)];

    [str drawInRect:sizeFrame];
    [super drawInteriorWithFrame:textFrame inView:controlView];
}

Question:

  1. Is there any better way to add two text field to NSBrowserCell?

  2. Is there any better way to implement Custom NSBrowserCell that suport binding?

  3. I want to change the color of text based on the size of the file. How can i achieve this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.