KeyboardDucker

KeyboardDucker offers a lightweight solution for ensuring that the currently active text field never gets obscured by the keyboard.


License
MIT
Install
pod try KeyboardDucker

Documentation

KeyboardDucker

KeyboardDucker offers a clean and lightweight solution for ensuring that the currently active text field never gets obscured by the keyboard.

Installation

CocoaPods

You can use CocoaPods to install KeyboardDucker by adding it to your Podfile:

platform :ios, '11.0'
use_frameworks!
pod 'KeyboardDucker'

Usage example

import UIKit
import KeyboardDucker 

class ViewController: UIViewController, KeyboardDucking {
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        startDuckingKeyboard()
    }

    override func viewWillDisappear(_ animated: Bool) {
        super.viewWillDisappear(animated)
        stopDuckingKeyboard()
    }
}

Meta

Levente Dimény – @leventedimeny

Distributed under the MIT license. See LICENSE for more information.