Adds top level nav elements to the tab bar.
This commit is contained in:
17
iOS/MonsterCards/Views/CollectionsViewController.h
Normal file
17
iOS/MonsterCards/Views/CollectionsViewController.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// CollectionsViewController.h
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface CollectionsViewController : UIViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
32
iOS/MonsterCards/Views/CollectionsViewController.m
Normal file
32
iOS/MonsterCards/Views/CollectionsViewController.m
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// CollectionsViewController.m
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import "CollectionsViewController.h"
|
||||
|
||||
@interface CollectionsViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation CollectionsViewController
|
||||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
17
iOS/MonsterCards/Views/DashboardViewController.h
Normal file
17
iOS/MonsterCards/Views/DashboardViewController.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// DashboardViewController.h
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface DashboardViewController : UIViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
32
iOS/MonsterCards/Views/DashboardViewController.m
Normal file
32
iOS/MonsterCards/Views/DashboardViewController.m
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// DashboardViewController.m
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import "DashboardViewController.h"
|
||||
|
||||
@interface DashboardViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation DashboardViewController
|
||||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
17
iOS/MonsterCards/Views/LibraryViewController.h
Normal file
17
iOS/MonsterCards/Views/LibraryViewController.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// LibraryViewController.h
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface LibraryViewController : UIViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
32
iOS/MonsterCards/Views/LibraryViewController.m
Normal file
32
iOS/MonsterCards/Views/LibraryViewController.m
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// LibraryViewController.m
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import "LibraryViewController.h"
|
||||
|
||||
@interface LibraryViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation LibraryViewController
|
||||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
17
iOS/MonsterCards/Views/MonsterViewController.h
Normal file
17
iOS/MonsterCards/Views/MonsterViewController.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// MonsterViewController.h
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface MonsterViewController : UIViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
32
iOS/MonsterCards/Views/MonsterViewController.m
Normal file
32
iOS/MonsterCards/Views/MonsterViewController.m
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// MonsterViewController.m
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MonsterViewController.h"
|
||||
|
||||
@interface MonsterViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation MonsterViewController
|
||||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
17
iOS/MonsterCards/Views/SearchViewController.h
Normal file
17
iOS/MonsterCards/Views/SearchViewController.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// SearchViewController.h
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface SearchViewController : UIViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
32
iOS/MonsterCards/Views/SearchViewController.m
Normal file
32
iOS/MonsterCards/Views/SearchViewController.m
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// SearchViewController.m
|
||||
// MonsterCards
|
||||
//
|
||||
// Created by Tom Hicks on 9/4/20.
|
||||
// Copyright © 2020 Tom Hicks. All rights reserved.
|
||||
//
|
||||
|
||||
#import "SearchViewController.h"
|
||||
|
||||
@interface SearchViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation SearchViewController
|
||||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user