| 123456789101112131415161718 |
- //
- // OfflineUnlockViewController.h
- // iSales-NPD
- //
- // Created by Ray on 10/10/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #
- @interface OfflineUnlockViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *bb_close;
- @property (strong, nonatomic) IBOutlet UIButton *btnUnlock;
- @property (strong, nonatomic) IBOutlet UITextField *edituser;
- @property (strong, nonatomic) IBOutlet UITextField *editpass;
- @property (nonatomic , copy) void (^returnValue)(bool bunlocked);
- @end
|