]>
Commit | Line | Data |
---|---|---|
d8f41ccd A |
1 | // |
2 | // NewPasswordViewController.h | |
3 | // Security | |
4 | // | |
5 | // Created by john on 10/24/12. | |
6 | // | |
7 | // | |
8 | ||
9 | #import <UIKit/UIKit.h> | |
10 | ||
11 | @interface NewPasswordViewController : UIViewController | |
12 | { | |
13 | dispatch_group_t dgroup; | |
14 | dispatch_queue_t xpc_queue; | |
15 | } | |
16 | @property (weak, nonatomic) IBOutlet UITextField *itemName; | |
17 | @property (weak, nonatomic) IBOutlet UITextField *itemAccount; | |
18 | @property (weak, nonatomic) IBOutlet UITextField *itemPassword; | |
19 | ||
20 | @end |