NotificationController.m 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #import "NotificationController.h"
  9. @interface NotificationController()
  10. @end
  11. @implementation NotificationController
  12. - (instancetype)init {
  13. self = [super init];
  14. if (self){
  15. // Initialize variables here.
  16. // Configure interface objects here.
  17. }
  18. return self;
  19. }
  20. - (void)willActivate {
  21. // This method is called when watch view controller is about to be visible to user
  22. [super willActivate];
  23. }
  24. - (void)didDeactivate {
  25. // This method is called when watch view controller is no longer visible
  26. [super didDeactivate];
  27. }
  28. @end