summaryrefslogtreecommitdiff
path: root/MultiViewXIBNav/FirstViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'MultiViewXIBNav/FirstViewController.m')
-rw-r--r--MultiViewXIBNav/FirstViewController.m38
1 files changed, 38 insertions, 0 deletions
diff --git a/MultiViewXIBNav/FirstViewController.m b/MultiViewXIBNav/FirstViewController.m
new file mode 100644
index 0000000..db62c08
--- /dev/null
+++ b/MultiViewXIBNav/FirstViewController.m
@@ -0,0 +1,38 @@
+//
+// FirstViewController.m
+// MultiViewXIBNav
+//
+// Created by mo khan on 2013-05-21.
+// Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "FirstViewController.h"
+
+@interface FirstViewController ()
+
+@end
+
+@implementation FirstViewController
+
+- (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 from its nib.
+}
+
+- (void)didReceiveMemoryWarning
+{
+ [super didReceiveMemoryWarning];
+ // Dispose of any resources that can be recreated.
+}
+
+@end