65 lines
1.8 KiB
Objective-C
65 lines
1.8 KiB
Objective-C
/*
|
|
* 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];
|
|
}
|
|
|
|
/*
|
|
- (void)didReceiveLocalNotification:(UILocalNotification *)localNotification withCompletion:(void (^)(WKUserNotificationInterfaceType))completionHandler {
|
|
// This method is called when a local notification needs to be presented.
|
|
// Implement it if you use a dynamic notification interface.
|
|
// Populate your dynamic notification interface as quickly as possible.
|
|
//
|
|
// After populating your dynamic notification interface call the completion block.
|
|
completionHandler(WKUserNotificationInterfaceTypeCustom);
|
|
}
|
|
*/
|
|
|
|
/*
|
|
- (void)didReceiveRemoteNotification:(NSDictionary *)remoteNotification withCompletion:(void (^)(WKUserNotificationInterfaceType))completionHandler {
|
|
// This method is called when a remote notification needs to be presented.
|
|
// Implement it if you use a dynamic notification interface.
|
|
// Populate your dynamic notification interface as quickly as possible.
|
|
//
|
|
// After populating your dynamic notification interface call the completion block.
|
|
completionHandler(WKUserNotificationInterfaceTypeCustom);
|
|
}
|
|
*/
|
|
|
|
@end
|
|
|
|
|
|
|