- July 26, 2025
- Mins Read
KeyboardHideManager – codeless manager to hide keyboard by tapping on views for iOS written in Swift.
pod ‘KeyboardHideManager’, ‘~> 1.0’
KeyboardHideManager cannot be used with Carthage in IB due .framework
issue. Use CocoaPods or Manual install.
If you prefer not to use either of the aforementioned dependency managers, you can integrate KeyboardHideManager into your project manually.
Drag KeyboardHideManager
folder in your project.
KeyboardHideManager
in Class fieldtargets
Target must be UIView
subclass and user iteraction enabled
is on. You can set it in IB in View section: (example for UILabel)
or in code:
someView.isUserInteractionEnabled = true
To use with xib you must add strong property to controller:
@IBOutlet var keyboardHideManager: KeyboardHideManager!
Otherwise it will be deinited. It is logic of Objects in xibs.
NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...