-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModalViewController.m
More file actions
41 lines (33 loc) · 835 Bytes
/
Copy pathModalViewController.m
File metadata and controls
41 lines (33 loc) · 835 Bytes
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
39
40
41
//
// ModalViewController.m
// Tapadoodledo
//
// Created by Jordan Howlett on 12/01/2014.
// Copyright (c) 2014 Jordan Howlett. All rights reserved.
//
#import "ModalViewController.h"
@interface ModalViewController ()
@end
@implementation ModalViewController
- (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.
}
- (IBAction)dismissModal:(id)sender {
[self dismissViewControllerAnimated:YES completion:nil];
}
@end