diff options
| author | mo khan <mo@mokhan.ca> | 2013-05-21 20:24:46 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-05-21 20:24:46 -0600 |
| commit | 1573781ec787a25bc9675fea9f1d98af8f53525e (patch) | |
| tree | 2c501bcad0eb03d747983a39d39430d3833a71f4 /MultiViewXIBNav/FirstViewController.m | |
| parent | aab3efb23854c80ee230bb8e3d3e957c3d05cc7f (diff) | |
complete the tab bar example
Diffstat (limited to 'MultiViewXIBNav/FirstViewController.m')
| -rw-r--r-- | MultiViewXIBNav/FirstViewController.m | 38 |
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 |
