summaryrefslogtreecommitdiff
path: root/MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m')
-rw-r--r--MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m38
1 files changed, 38 insertions, 0 deletions
diff --git a/MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m b/MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m
new file mode 100644
index 0000000..1800de7
--- /dev/null
+++ b/MultiViewStoryTabBar/MultiViewStoryTabBar/ThirdViewController.m
@@ -0,0 +1,38 @@
+//
+// ThirdViewController.m
+// MultiViewStoryTabBar
+//
+// Created by mo khan on 2013-05-23.
+// Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "ThirdViewController.h"
+
+@interface ThirdViewController ()
+
+@end
+
+@implementation ThirdViewController
+
+- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
+{
+ self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
+ if (self) {
+ // Custom initialization
+ }
+ return self;
+}
+
+- (void)viewDidLoad
+{
+ [super viewDidLoad];
+ // Do any additional setup after loading the view.
+}
+
+- (void)didReceiveMemoryWarning
+{
+ [super didReceiveMemoryWarning];
+ // Dispose of any resources that can be recreated.
+}
+
+@end