VLCPasscodeLockViewController.h 489 B

1234567891011121314151617181920212223
  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. }
  13. @property (nonatomic, strong) IBOutlet UILabel *enterPasscodeLabel;
  14. @property (nonatomic, strong) IBOutlet UITextField *enterCodeField;
  15. - (IBAction)textFieldValueChanged:(id)sender;
  16. - (void)resetPasscode;
  17. @end