Files
StepperView/Example/StepperView_Watch Extension/NotificationController.swift
2020-05-09 10:50:12 -07:00

38 lines
1.0 KiB
Swift

//
// NotificationController.swift
// StepperView_Watch Extension
//
// Created by Venkatnarayansetty, Badarinath on 5/9/20.
// Copyright © 2020 CocoaPods. All rights reserved.
//
import WatchKit
import Foundation
import UserNotifications
class NotificationController: WKUserNotificationInterfaceController {
override init() {
// Initialize variables here.
super.init()
// Configure interface objects here.
}
override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
}
override func didDeactivate() {
// This method is called when watch view controller is no longer visible
super.didDeactivate()
}
override func didReceive(_ notification: UNNotification) {
// This method is called when a notification needs to be presented.
// Implement it if you use a dynamic notification interface.
// Populate your dynamic notification interface as quickly as possible.
}
}