- July 11, 2025
- Mins Read
We may need keyboard infomation from keyboard notifications to do animation. However, the approach is complicated and easy to make mistakes. Even more, we need to handle the bug of system fire keyboard notifications.
But KeyboardMan will make it simple & easy.
另有中文介绍。
Swift 4.2, iOS 8.0
(Swift 3, use version 1.1.0)
import KeyboardMan
Do animation with keyboard appear/disappear:
let keyboardMan = KeyboardMan()
keyboardMan.animateWhenKeyboardAppear = { [weak self] appearPostIndex, keyboardHeight, keyboardHeightIncrement in
print(“appear \(appearPostIndex), \(keyboardHeight), \(keyboardHeightIncrement)\n”)
if let self = self {
self.tableView.contentOffset.y += keyboardHeightIncrement
self.tableView.contentInset.bottom = keyboardHeight + self.toolBar.frame.height
self.toolBarBottomConstraint.constant = keyboardHeight
self.view.layoutIfNeeded()
}
}
keyboardMan.animateWhenKeyboardDisappear = { [weak self] keyboardHeight in
print(“disappear \(keyboardHeight)\n”)
if let self = self {
self.tableView.contentOffset.y -= keyboardHeight
self.tableView.contentInset.bottom = self.toolBar.frame.height
self.toolBarBottomConstraint.constant = 0
self.view.layoutIfNeeded()
}
}
For more specific information, you can use keyboardInfo that KeyboardMan post:
keyboardMan.postKeyboardInfo = { [weak self] keyboardMan, keyboardInfo in
// TODO
}
Check the demo for more information.
Feel free to drag KeyboardMan.swift
to your iOS Project. But it’s recommended to use Carthage (or CocoaPods).
github “nixzhu/KeyboardMan”
pod ‘KeyboardMan’
A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...