-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsEditRoleViewController.h
More file actions
executable file
·41 lines (30 loc) · 1.1 KB
/
SettingsEditRoleViewController.h
File metadata and controls
executable file
·41 lines (30 loc) · 1.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
//
// SettingsEditRoleViewController.h
// Junction
//
// Created by Bobby Ren on 4/8/13.
//
//
#import <UIKit/UIKit.h>
#import "Constants.h"
#import "UserInfo.h"
#import "IndustryFilterTableViewController.h"
@protocol SettingsEditRoleDelegate <NSObject>
-(void)didSaveRoleAtIndex:(int)index withPosition:(NSString*)newPosition withCompany:(NSString*)newCompany withIndustry:(NSString*)newIndustry;
@end
@interface SettingsEditRoleViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UINavigationControllerDelegate, IndustryFilterDelegate, UITextFieldDelegate>
{
IBOutlet UITableView * tableView;
IBOutlet UITextField * inputPosition;
IBOutlet UITextField * inputCompany;
IBOutlet UITextField * inputIndustry;
IBOutlet UIButton * buttonSave;
// UIPickerView * pickerIndustry;
}
@property (nonatomic, weak) id delegate;
@property (nonatomic, assign) int roleIndex;
@property (nonatomic, strong) NSString * position;
@property (nonatomic, strong) NSString * company;
@property (nonatomic, strong) NSString * industry;
-(IBAction)didClickSave:(id)sender;
@end