This repository was archived by the owner on Jun 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassDetailViewController.h
More file actions
60 lines (49 loc) · 1.95 KB
/
ClassDetailViewController.h
File metadata and controls
60 lines (49 loc) · 1.95 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
//
// ClassDetailViewController.h
// TeachNotes With Parse
//
// Created by Davis Carlson on 2014-06-08.
// Copyright (c) 2014 Davis Carlson. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Parse/Parse.h>
#import <iAd/iAd.h>
#import <MessageUI/MessageUI.h>
#import "ActionSheetDatePicker.h"
#import "CustomIOS7AlertView.h"
@interface ClassDetailViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate, MFMailComposeViewControllerDelegate, UITextViewDelegate, UIPopoverControllerDelegate, UIAlertViewDelegate, UIPrintInteractionControllerDelegate,ADBannerViewDelegate> {
PFQuery *queryTimes;
NSMutableArray *objectTimesArray;
NSMutableArray *tableViewArray;
IBOutlet UIActivityIndicatorView *activityIndicator;
IBOutlet UITableView *timesTable;
IBOutlet UIButton *addNotesButton;
IBOutlet UIButton *addLessonPlanButton;
IBOutlet UILabel *startEnd;
IBOutlet UILabel *teacherName;
IBOutlet UILabel *nameLabel;
IBOutlet UILabel *timeLabel;
IBOutlet UILabel *notesHereLabel;
IBOutlet UILabel *lessonViewTitle;
IBOutlet UITextView *notes;
IBOutlet UITextView *lessonView;
IBOutlet UIScrollView *scrollView;
IBOutlet UIBarButtonItem *addClass;
IBOutlet UIButton *shareClass;
IBOutlet UIButton *printClass;
IBOutlet UILabel *lessonPlansAvailable;
IBOutlet ADBannerView *adViewBanner;
IBOutlet UIButton *save;
NSIndexPath *indexOfSelectedRow;
}
@property (strong, nonatomic) id detailStart;
@property (strong, nonatomic) id detailEnd;
@property (strong, nonatomic) id detailTeacherName;
@property (strong, nonatomic) id detailObjectID;
@property (strong, nonatomic) id detailClass;
@property (strong, nonatomic) id detailUserID;
@property (strong, nonatomic) id detailTeacherEmail;
@property (nonatomic, retain) IBOutlet UIPopoverController *popoverController;
@property(weak, nonatomic) UIView *activeTextView;
-(void)getAllTimes;
@end