blob: 5a9370f0e6a90caf9961bb4f4ed7aecbee8f435e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//
// TableView.m
// VKPC
//
// Created by Eugene on 12/1/13.
// Copyright (c) 2013 Eugene Z. All rights reserved.
//
#import "TableView.h"
@implementation TableView
- (id)initWithFrame:(NSRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
}
return self;
}
- (BOOL)isOpaque {
return NO;
}
- (void)drawRect:(NSRect)dirtyRect
{
[super drawRect:dirtyRect];
// Drawing code here.
}
@end
|