-
Notifications
You must be signed in to change notification settings - Fork 106
/
SNTimeViewController.h
executable file
·29 lines (28 loc) · 1.23 KB
/
SNTimeViewController.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
#import "SMSNinja-private.h"
@interface SNTimeViewController : UIViewController <UIPickerViewDelegate, UIPickerViewDataSource, UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate, UIGestureRecognizerDelegate>
{
UITextField *nameField;
UISwitch *replySwitch;
UITextField *messageField;
UISwitch *soundSwitch;
UIPickerView *timePickerView;
UITapGestureRecognizer *tapRecognizer;
@public
UITableView *settingsTableView;
}
@property (nonatomic, retain) NSString *keywordString;
@property (nonatomic, retain) NSString *nameString;
@property (nonatomic, retain) NSString *phoneAction;
@property (nonatomic, retain) NSString *messageAction;
@property (nonatomic, retain) NSString *replyString;
@property (nonatomic, retain) NSString *messageString;
@property (nonatomic, retain) NSString *soundString;
@property (nonatomic, retain) NSString *forwardString; // in another view
@property (nonatomic, retain) NSString *numberString; // in another view
@property (nonatomic, retain) NSString *originalKeyword;
- (void)keyboardWillShow:(NSNotification *)notification;
- (void)keyboardWillHide:(NSNotification *)notification;
- (void)dismissKeyboardWithTap:(UITapGestureRecognizer *)tap;
- (void)saveTextFieldValues;
- (void)saveSwitchValues;
@end