aboutsummaryrefslogtreecommitdiff
path: root/VKPC/TableView.m
diff options
context:
space:
mode:
Diffstat (limited to 'VKPC/TableView.m')
-rw-r--r--VKPC/TableView.m33
1 files changed, 33 insertions, 0 deletions
diff --git a/VKPC/TableView.m b/VKPC/TableView.m
new file mode 100644
index 0000000..5a9370f
--- /dev/null
+++ b/VKPC/TableView.m
@@ -0,0 +1,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