Files
ScrollingContentViewController/Source/KeyboardNotificationObserving.swift
T
Drew Olbrich 64e4ae6a9c Initial commit
2019-02-03 12:22:40 -08:00

21 lines
615 B
Swift

//
// KeyboardNotificationObserving.swift
// ScrollingContentViewController
//
// Created by Drew Olbrich on 1/19/19.
// Copyright 2019 Oath Inc.
//
// Licensed under the terms of the MIT License. See the file LICENSE for the full terms.
//
import Foundation
/// A protocol for objects that should be notified by `KeyboardNotificationManager`
/// when keyboard show or hide notifications are received.
internal protocol KeyboardNotificationObserving: class {
/// Tells the observer that a keyboard notification has been received.
func didReceiveKeyboardNotification(_ notification: Notification)
}