-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIBViewController.h
executable file
·44 lines (31 loc) · 1.33 KB
/
IBViewController.h
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
//
// IBViewController.h
// Icebreakr
//
// Created by iD Student on 7/24/14.
//
//
#import <UIKit/UIKit.h>
#import "IBPerson.h"
#import "IBMatchedViewController.h"
#import "IBPartytSetupViewController.h"
@class IBPartytSetupViewController;
@interface IBViewController : UIViewController <UICollectionViewDataSource, UICollectionViewDelegate, UITextFieldDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate> {
NSMutableArray *finalHobbies;
UIImage *userPhoto;
BOOL isHoster;
}
@property (strong, nonatomic) NSMutableArray *hobbies;
@property (strong, nonatomic) NSString *partyName;
@property (strong, nonatomic) NSString *partyMessage;
@property (strong, nonatomic) IBOutlet UILabel *welcomeLabel;
@property (strong, nonatomic) IBOutlet UILabel *messsageLabel;
@property (strong, nonatomic) IBOutlet UIImageView *profileImageView;
@property (strong, nonatomic) IBOutlet UITextField *nameTF;
@property (strong, nonatomic) IBOutlet UITextField *emailTF;
@property (strong, nonatomic) IBOutlet UITextField *customCategoryTF;
@property (strong, nonatomic) IBOutlet UITextField *pinTF;
@property (strong, nonatomic) IBOutlet UITextField *settingsPinTF;
@property (strong, nonatomic) IBOutlet UICollectionView *categoryCollectionView;
@property (strong, nonatomic) IBPartytSetupViewController *partySetupVC;
@end