1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Kim Wittenburg 15062dfb27 Archive Project
2017-07-25 17:21:13 +02:00

22 lines
553 B
Objective-C
Executable File

//
// ItemCellView.m
// LionTableViewTesting
//
// Created by Tomaž Kragelj on 8/29/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "ItemCellView.h"
@implementation ItemCellView
@synthesize detailTextField = _detailTextField;
- (void)setBackgroundStyle:(NSBackgroundStyle)backgroundStyle {
NSColor *textColor = (backgroundStyle == NSBackgroundStyleDark) ? [NSColor windowBackgroundColor] : [NSColor controlShadowColor];
self.detailTextField.textColor = textColor;
[super setBackgroundStyle:backgroundStyle];
}
@end