summaryrefslogtreecommitdiff
path: root/MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m')
-rw-r--r--MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m38
1 files changed, 38 insertions, 0 deletions
diff --git a/MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m b/MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m
new file mode 100644
index 0000000..24fd41f
--- /dev/null
+++ b/MultiViewsStoryNav./MultiViewsStoryNav./SecondViewController.m
@@ -0,0 +1,38 @@
+//
+// SecondViewController.m
+// MultiViewsStoryNav.
+//
+// Created by mo khan on 2013-05-23.
+// Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "SecondViewController.h"
+
+@interface SecondViewController ()
+
+@end
+
+@implementation SecondViewController
+
+- (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