-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocumentViewer.h
More file actions
46 lines (40 loc) · 1.22 KB
/
DocumentViewer.h
File metadata and controls
46 lines (40 loc) · 1.22 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
//
// DocumentViewer.h
// Formulae
//
// Created by Sam Vale on 31/08/13.
// Copyright (c) 2013 David McAfee. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ViewController.h"
@interface DocumentViewer : ECSlidingViewController{
IBOutlet UIScrollView *scroll;
IBOutlet UILabel *Label;
IBOutlet UILabel *Label2;
IBOutlet UILabel *Label3;
IBOutlet UILabel *Label4;
IBOutlet UILabel *Label5;
IBOutlet UILabel *Label6;
IBOutlet UILabel *Label7;
IBOutlet UILabel *Label8;
}
@property (nonatomic, strong)IBOutlet UIScrollView *scroll;
-(IBAction)returnToPreviousView;
@property(nonatomic, strong) IBOutlet UILabel *Label;
@property(nonatomic, strong) IBOutlet UILabel *Label2;
@property(nonatomic, strong) IBOutlet UILabel *Label3;
@property(nonatomic, strong) IBOutlet UILabel *Label4;
@property(nonatomic, strong) IBOutlet UILabel *Label5;
@property(nonatomic, strong) IBOutlet UILabel *Label6;
@property(nonatomic, strong) IBOutlet UILabel *Label7;
@property(nonatomic, strong) IBOutlet UILabel *Label8;
-(IBAction)usub;
-(IBAction)exponent;
-(IBAction)diffCalc;
-(IBAction)quads;
-(IBAction)stats;
-(IBAction)binomialRevision;
-(IBAction)fractions;
-(IBAction)moles;
-(IBAction)physics;
@end