-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuViewController.h
More file actions
executable file
·69 lines (59 loc) · 2.1 KB
/
MenuViewController.h
File metadata and controls
executable file
·69 lines (59 loc) · 2.1 KB
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
68
69
//
// MenuViewController.h
// SlideToDo
//
// Created by David McAfee on 20/04/13.
// Copyright (c) 2013 David McAfee. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol MenuViewControllerDelegate;
@interface MenuViewController : UIViewController {
IBOutlet UILabel *Label;
IBOutlet UILabel *Label2;
IBOutlet UILabel *Label3;
IBOutlet UILabel *Label4;
IBOutlet UILabel *Label5;
IBOutlet UILabel *Label6;
IBOutlet UILabel *Label7;
IBOutlet UILabel *Label8;
IBOutlet UILabel *Label9;
IBOutlet UILabel *Label10;
IBOutlet UILabel *Label11;
IBOutlet UILabel *Label12;
IBOutlet UILabel *Label13;
IBOutlet UITextView *Label14;
IBOutlet UITextView *Label15;
IBOutlet UITextView *Label16;
IBOutlet UIScrollView *scrollView;
CGPoint startOffset;
CGPoint destinationOffset;
NSDate *startTime;
NSTimer *timer;
}
@property (nonatomic, retain) NSDate *startTime;
@property (nonatomic, retain) NSTimer *timer;
@property (nonatomic, strong) UILabel *Label;
@property (nonatomic, strong) UILabel *Label1;
@property (nonatomic, strong) UILabel *Label2;
@property (nonatomic, strong) UILabel *Label3;
@property (nonatomic, strong) UILabel *Label4;
@property (nonatomic, strong) UILabel *Label5;
@property (nonatomic, strong) UILabel *Label6;
@property (nonatomic, strong) UILabel *Label7;
@property (nonatomic, strong) UILabel *Label8;
@property (nonatomic, strong) UILabel *Label9;
@property (nonatomic, strong) UILabel *Label10;
@property (nonatomic, strong) UILabel *Label11;
@property (nonatomic, strong) UILabel *Label12;
@property (nonatomic, strong) UILabel *Label13;
@property (nonatomic, strong) UITextView *Label14;
@property (nonatomic, strong) UITextView *Label15;
@property (nonatomic, strong) UITextView *Label16;
-(IBAction)back;
@property (nonatomic, retain) IBOutlet UIScrollView *scrollView;
@property (nonatomic, weak) id <MenuViewControllerDelegate> delegate;
@property (nonatomic, strong) NSArray *categoryList;
@end
@protocol MenuViewControllerDelegate
-(void)menuViewControllerDidFinishWithCategoryId:(NSInteger)categoryId;
@end