VLCSettingsViewController.h 756 B

123456789101112131415161718192021222324252627
  1. //
  2. // VLCSettingsViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 19.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCSettingsViewController : UIViewController
  10. @property (nonatomic, strong) IBOutlet UIBarButtonItem *dismissButton;
  11. @property (nonatomic, strong) IBOutlet UISwitch *passcodeLockSwitch;
  12. @property (nonatomic, strong) IBOutlet UILabel *passcodeLockLabel;
  13. @property (nonatomic, strong) IBOutlet UISwitch *audioPlaybackInBackgroundSwitch;
  14. @property (nonatomic, strong) IBOutlet UILabel *audioPlaybackInBackgroundLabel;
  15. - (IBAction)togglePasscodeLockSetting:(id)sender;
  16. - (IBAction)toggleAudioInBackGroundSetting:(id)sender;
  17. - (IBAction)dismiss:(id)sender;
  18. @end