VLCDetailInterfaceController.h 632 B

123456789101112131415161718192021
  1. //
  2. // VLCDetailInterfaceController.h
  3. // VLC for iOS
  4. //
  5. // Created by Tobias Conradi on 03.04.15.
  6. // Copyright (c) 2015 VideoLAN. All rights reserved.
  7. //
  8. #import <WatchKit/WatchKit.h>
  9. #import <Foundation/Foundation.h>
  10. #import "VLCBaseInterfaceController.h"
  11. @interface VLCDetailInterfaceController : VLCBaseInterfaceController
  12. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *titleLabel;
  13. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *durationLabel;
  14. @property (weak, nonatomic) IBOutlet WKInterfaceButton *playNowButton;
  15. @property (weak, nonatomic) IBOutlet WKInterfaceImage *imageView;
  16. - (IBAction)playNow;
  17. @end