-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewController.m
38 lines (28 loc) · 995 Bytes
/
ViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// ViewController.m
// CollectionViewDemo
//
// Created by Yoash Adato on 21/03/2022.
//
#import "ViewController.h"
#import "MyCollectionViewController.h"
#import "MyTableViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (IBAction)tableViewPressed:(id)sender {
MyTableViewController *vc = [[MyTableViewController alloc] initWithStyle:UITableViewStylePlain];
vc.title = @"UITableViewController";
[self.navigationController pushViewController:vc animated:YES];
}
- (IBAction)collectionViewPressed:(id)sender {
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
MyCollectionViewController *vc = [[MyCollectionViewController alloc] initWithCollectionViewLayout:layout];
vc.title = @"UICollectionViewController";
[self.navigationController pushViewController:vc animated:YES];
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
@end