2016-06-13 14:14:02 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2016-06-13 05:53:08 +08:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
|
|
|
|
|