Blame view

BT Vendor/DatePickerViewController.m 2.46 KB
Imanol-Mikel Barba Sabariego authored
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
//
//  DatePickerViewController.m
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 03/09/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import "DatePickerViewController.h"

@interface DatePickerViewController ()

@end

@implementation DatePickerViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
Imanol-Mikel Barba Sabariego authored
26
27
28
29
30
31
32
33
34
35
36
37

- (void) parentViewControllerDidRotateWithOrientation: (UIDeviceOrientation) orientation
{
    NSLog(@"[DatePickerViewController.m]: Screen did rotate");
}

- (void) parentViewControllerWillRotateToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation duration: (NSTimeInterval)duration
{
    NSLog(@"[DatePickerViewController.m]: Screen will rotate");
}
Imanol-Mikel Barba Sabariego authored
38
39
40
41
42
43
- (void)viewDidLoad
{
    self.view.backgroundColor=[[UIColor blackColor] colorWithAlphaComponent:.7];
    self.datePickerView.layer.cornerRadius = 5;
    self.datePickerView.layer.shadowOpacity = 0.8;
    self.datePickerView.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
Imanol-Mikel Barba Sabariego authored
44
45
46
47
48

    //Fix transparency glitch on iPad
    [self.datePicker setDate:[NSDate dateWithTimeIntervalSince1970:NSTimeIntervalSince1970]];
    [self.datePicker setDate:[NSDate date]];
Imanol-Mikel Barba Sabariego authored
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
    [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.
}

- (void)showAnimate
{
    self.view.transform = CGAffineTransformMakeScale(1.3, 1.3);
    self.view.alpha = 0;
    [UIView animateWithDuration:.25 animations:^{
        self.view.alpha = 1;
        self.view.transform = CGAffineTransformMakeScale(1, 1);
    }];
}

- (void)removeAnimate
{
    [UIView animateWithDuration:.25 animations:^{
        self.view.transform = CGAffineTransformMakeScale(1.3, 1.3);
        self.view.alpha = 0.0;
    } completion:^(BOOL finished) {
        if (finished) {
            [self.view removeFromSuperview];
        }
    }];
}

- (IBAction)closePopup:(id)sender
{
Imanol-Mikel Barba Sabariego authored
83
    [self.delegate passDateViewController:self didFinishEnteringItem:[[self datePicker] date]];
Imanol-Mikel Barba Sabariego authored
84
    [self.childDelegate removeChildFromParentController:self];
Imanol-Mikel Barba Sabariego authored
85
86
87
88
89
90
91
92
93
94
95
96
    [self removeAnimate];
}

- (void)showInView:(UIView *)aView animated:(BOOL)animated
{
    [aView addSubview:self.view];
    if (animated) {
        [self showAnimate];
    }
}

@end