TableViewPlayground/ATTableCellView.h

/*
 Copyright (C) 2017 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 A basic subclass of NSTableCellView that adds some properties strictly for allowing access to the items in code.
 */
 
@import Cocoa;
 
@class ATColorView;
 
@interface ATTableCellView : NSTableCellView
 
@property (weak) IBOutlet NSTextField *subTitleTextField;
@property (weak) IBOutlet ATColorView *colorView;
@property (weak) IBOutlet NSProgressIndicator *progessIndicator;
 
- (void)layoutViewsForSmallSize:(BOOL)smallSize animated:(BOOL)animated;
 
@end