VLCPasscodeLockViewController.h 466 B

12345678910111213141516171819202122
  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. @end