TableViewPlayground/ATObjectTableRowView.m

/*
 Copyright (C) 2017 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 A simple subclass of NSTableRowView that introduces an objectValue property.
 */
 
#import "ATObjectTableRowView.h"
 
@implementation ATObjectTableRowView
 
@synthesize objectValue = _objectValue;
 
@end