| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * This file is part of the SDWebImage package.
- * (c) Olivier Poitrey <rs@dailymotion.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- #import "NotificationController.h"
- @interface NotificationController()
- @end
- @implementation NotificationController
- - (instancetype)init {
- self = [super init];
- if (self){
- // Initialize variables here.
- // Configure interface objects here.
-
- }
- return self;
- }
- - (void)willActivate {
- // This method is called when watch view controller is about to be visible to user
- [super willActivate];
- }
- - (void)didDeactivate {
- // This method is called when watch view controller is no longer visible
- [super didDeactivate];
- }
- @end
|