| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * 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
|