65 lines
1.8 KiB
Objective-C
65 lines
1.8 KiB
Objective-C
//
|
|
// NotificationController.m
|
|
// SDWebImage Watch Demo Extension
|
|
//
|
|
// Created by Bogdan on 13/06/16.
|
|
// Copyright © 2016 Dailymotion. All rights reserved.
|
|
//
|
|
|
|
#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
|
|
|
|
|
|
|