InterfaceController.m 677 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // InterfaceController.m
  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 "InterfaceController.h"
  9. @interface InterfaceController()
  10. @end
  11. @implementation InterfaceController
  12. - (void)awakeWithContext:(id)context {
  13. [super awakeWithContext:context];
  14. // Configure interface objects here.
  15. }
  16. - (void)willActivate {
  17. // This method is called when watch view controller is about to be visible to user
  18. [super willActivate];
  19. }
  20. - (void)didDeactivate {
  21. // This method is called when watch view controller is no longer visible
  22. [super didDeactivate];
  23. }
  24. @end