-
Notifications
You must be signed in to change notification settings - Fork 0
/
centerViewController.m
67 lines (54 loc) · 1.73 KB
/
centerViewController.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// centerViewController.m
// testSlideView
//
// Created by yhnbvfrt on 13-9-10.
// Copyright (c) 2013年 yhnbvfrt. All rights reserved.
//
#import "centerViewController.h"
@interface centerViewController ()
@end
@implementation centerViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
// ((leftViewController*)self.viewDeckController.leftController).tabDelegate=self;
[super viewDidLoad];
leftViewOpen = NO;
// Do any additional setup after loading the view from its nib.
[lefttoggleBtn addTarget:self action:@selector(btnRotateToggleLeftView) forControlEvents:UIControlEventTouchUpInside];
self.viewDeckController.panningMode = IIViewDeckNoPanning;
self.viewDeckController.delegate = self;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(btnRotateToggleLeftView) name:@"btnRotateToggleLeftView" object:nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
if (leftViewOpen == YES)
{
[self btnRotateToggleLeftView];
}
}
-(void)btnRotateToggleLeftView
{
leftViewOpen = !leftViewOpen;
[self.viewDeckController toggleLeftView];
[UIView animateWithDuration:0.1
animations:^{
lefttoggleBtn.transform = CGAffineTransformMakeRotation(leftViewOpen * M_PI_2);
}
completion:^(BOOL finished){
}];
}
@end