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:
Is there any better way to add two text field to
NSBrowserCell?Is there any better way to implement Custom
NSBrowserCellthat suport binding?I want to change the color of text based on the size of the file. How can i achieve this?