TableViewPlayground/ATObjectTableRowView.h

/*
 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 Cocoa;
 
@interface ATObjectTableRowView : NSTableRowView {
@private
    id _objectValue;
}
 
@property(strong) id objectValue;
 
@end