diff options
Diffstat (limited to 'MultiViewStoryTabBar/MultiViewStoryTabBar/SecondViewController.m')
| -rw-r--r-- | MultiViewStoryTabBar/MultiViewStoryTabBar/SecondViewController.m | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/MultiViewStoryTabBar/MultiViewStoryTabBar/SecondViewController.m b/MultiViewStoryTabBar/MultiViewStoryTabBar/SecondViewController.m new file mode 100644 index 0000000..6ffc204 --- /dev/null +++ b/MultiViewStoryTabBar/MultiViewStoryTabBar/SecondViewController.m @@ -0,0 +1,38 @@ +// +// SecondViewController.m +// MultiViewStoryTabBar +// +// 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 |
