InterfaceController.h 397 B

1234567891011121314151617
  1. //
  2. // InterfaceController.h
  3. // VLC for iOS WatchKit Extension
  4. //
  5. // Created by Carola Nitz on 22/03/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 InterfaceController : VLCBaseInterfaceController
  12. @property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
  13. @end