-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainViewController.h
More file actions
44 lines (33 loc) · 1.18 KB
/
MainViewController.h
File metadata and controls
44 lines (33 loc) · 1.18 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
//
// MainViewController.h
// SampleUseFMDB
//
// Created by MacPro01 on 2013/11/21.
// Copyright (c) 2013年 eyoneya. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MainViewController : UIViewController
{
IBOutlet UITextField *tfKey;
IBOutlet UITextField *tfTData;
IBOutlet UITextField *tfIData;
IBOutlet UITextField *tfBData;
IBOutlet UISwitch *swBData;
IBOutlet UIButton *buttonSearch;
IBOutlet UIButton *buttonRegistry;
IBOutlet UIButton *buttonDelete;
}
@property (nonatomic, retain) IBOutlet UITextField *tfKey;
@property (nonatomic, retain) IBOutlet UITextField *tfTData;
@property (nonatomic, retain) IBOutlet UITextField *tfIData;
@property (nonatomic, retain) IBOutlet UISwitch *swBData;
- (IBAction)switchBData:(id)sender;
@property (nonatomic, retain) IBOutlet UIPickerView *pickerBData;
@property (nonatomic, retain) IBOutlet UIButton *buttonSearch;
- (IBAction)searchData:(id)sender;
@property (nonatomic, retain) IBOutlet UIButton *buttonDelete;
- (IBAction)deleteData:(id)sender;
@property (nonatomic, retain) IBOutlet UIButton *buttonRegistry;
- (IBAction)saveData:(id)sender;
- (IBAction)closeSoftwareKeyboard:(id)sender;
@end