OfflineUnlockViewController.h 575 B

123456789101112131415161718
  1. //
  2. // OfflineUnlockViewController.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 10/10/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #
  10. @interface OfflineUnlockViewController : UIViewController
  11. @property (strong, nonatomic) IBOutlet UIBarButtonItem *bb_close;
  12. @property (strong, nonatomic) IBOutlet UIButton *btnUnlock;
  13. @property (strong, nonatomic) IBOutlet UITextField *edituser;
  14. @property (strong, nonatomic) IBOutlet UITextField *editpass;
  15. @property (nonatomic , copy) void (^returnValue)(bool bunlocked);
  16. @end