-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfileSettingViewController.h
36 lines (26 loc) · 1.45 KB
/
ProfileSettingViewController.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
//
// ProfileSettingViewController.h
// Teamstory
//
// Created by Freddy Hidalgo-Monchez on 2015-02-15.
//
//
#import <UIKit/UIKit.h>
@interface ProfileSettingViewController : UIViewController <UINavigationControllerDelegate, UIAlertViewDelegate, UIImagePickerControllerDelegate, UITextFieldDelegate, UITextViewDelegate, UIActionSheetDelegate, UIScrollViewDelegate, UIPickerViewDataSource, UIPickerViewDelegate>
@property (strong, nonatomic) IBOutlet UIScrollView *backgroundView;
@property (strong, nonatomic) IBOutlet PFImageView *profilePictureImageView;
@property (strong, nonatomic) IBOutlet UITextField *twitter_textfield;
@property (strong, nonatomic) IBOutlet UITextField *linkedin_textfield;
@property (strong, nonatomic) IBOutlet UITextField *angellist_textfield;
@property (strong, nonatomic) IBOutlet UIPickerView *industry_pickerView;
@property (strong, nonatomic) IBOutlet UITextField *email_address;
@property (strong, nonatomic) IBOutlet UITextField *location;
@property (strong, nonatomic) IBOutlet UITextView *userDescription;
@property (strong, nonatomic) IBOutlet UITextField *website;
@property (strong, nonatomic) IBOutlet UITextField *displayName;
@property (strong, nonatomic) IBOutlet UIButton *industry;
@property (strong, nonatomic) IBOutlet UIView *industryView;
@property (strong, nonatomic) IBOutlet UIButton *industry_buttonAction;
- (IBAction)websiteChanged:(UITextField *)sender;
- (IBAction)locationChanged:(UITextField *)sender;
@end