mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
23 lines
565 B
Objective-C
23 lines
565 B
Objective-C
//
|
|
// MPCustomFieldTableCellView.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 28.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPCustomFieldTableCellView.h"
|
|
|
|
@implementation MPCustomFieldTableCellView
|
|
|
|
- (void)setBackgroundStyle:(NSBackgroundStyle)backgroundStyle {
|
|
[super setBackgroundStyle:NSBackgroundStyleLight];
|
|
}
|
|
|
|
- (void)setValue:(id)value forKeyPath:(NSString *)keyPath {
|
|
NSLog(@"%@ setValue:forKeyPath:%@", NSStringFromClass([self class]), keyPath);
|
|
[super setValue:value forKeyPath:keyPath];
|
|
}
|
|
|
|
@end
|