aboutsummaryrefslogtreecommitdiff
path: root/VKPC/FlippedView.m
diff options
context:
space:
mode:
Diffstat (limited to 'VKPC/FlippedView.m')
-rw-r--r--VKPC/FlippedView.m31
1 files changed, 31 insertions, 0 deletions
diff --git a/VKPC/FlippedView.m b/VKPC/FlippedView.m
new file mode 100644
index 0000000..bdf5972
--- /dev/null
+++ b/VKPC/FlippedView.m
@@ -0,0 +1,31 @@
+//
+// PopoverView.m
+// VKPC
+//
+// Created by Eugene on 12/1/13.
+// Copyright (c) 2013 Eugene Z. All rights reserved.
+//
+
+#import "FlippedView.h"
+
+@implementation FlippedView
+
+- (id)initWithFrame:(NSRect)frame {
+ self = [super initWithFrame:frame];
+ if (self) {
+ // Initialization code here.
+ }
+ return self;
+}
+
+- (void)drawRect:(NSRect)dirtyRect {
+ [super drawRect:dirtyRect];
+
+ // Drawing code here.
+}
+
+- (BOOL)isFlipped {
+ return YES;
+}
+
+@end