VLCNowPlayingInterfaceController.h 594 B

1234567891011121314151617181920212223
  1. //
  2. // VLCNowPlayingInterfaceController.h
  3. // VLC for iOS
  4. //
  5. // Created by Tobias Conradi on 02.04.15.
  6. // Copyright (c) 2015 VideoLAN. All rights reserved.
  7. //
  8. #import <WatchKit/WatchKit.h>
  9. #import <Foundation/Foundation.h>
  10. @interface VLCNowPlayingInterfaceController : WKInterfaceController
  11. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *durationLabel;
  13. @property (weak, nonatomic) IBOutlet WKInterfaceButton *playPauseButton;
  14. - (IBAction)playPausePressed;
  15. - (IBAction)skipForward;
  16. - (IBAction)skipBackward;
  17. @end