| 1234567891011121314151617181920 |
- //
- // RetrievePasswordViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-3-17.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JLCustomerAlertController.h"
- @interface RetrievePasswordViewController : JLCustomerAlertController<UITextFieldDelegate>
- @property (strong, nonatomic) IBOutlet UITextField *editUser;
- @property (strong, nonatomic) IBOutlet UITextField *editEmail;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet UIButton *btnOk;
- @property (strong, nonatomic) IBOutlet UIButton *btnCancel;
- @end
|