VLCPasscodeLockViewController.h 546 B

1234567891011121314151617181920212223242526
  1. //
  2. // VLCPasscodeLockViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 18.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCPasscodeLockViewController : UIViewController
  10. {
  11. NSString *_passcode;
  12. NSString *_tmpPasscode;
  13. NSUInteger _resetStage;
  14. }
  15. @property (nonatomic, strong) IBOutlet UILabel *enterPasscodeLabel;
  16. @property (nonatomic, strong) IBOutlet UITextField *enterCodeField;
  17. - (IBAction)textFieldValueChanged:(id)sender;
  18. - (void)resetPasscode;
  19. @end