KeyboardHideManager - codeless manager to hide keyboard by tapping on views for iOS written in Swift.
- Features
- Requirements
- Installation
- Usage
- User Iteraction Enabled
- Code usage
- Xib support
- To do
- License
- 3 simple actions to setup
- Multiple views setup
- Codeless usage
- Xib support
- Swift 5.0+
- iOS 12.0+
pod 'KeyboardHideManager', '~> 1.0'
Full CocoaPods Guide (click to expand)
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate KeyboardHideManager into your Xcode project using CocoaPods, create file Podfile
with content:
use_frameworks!
target '<Your Target Name>' do
pod 'KeyboardHideManager', '~> 1.0'
end
Then, run the following command:
$ pod install
Close 'Your Target Name'.xcodeproj and open 'Your Target Name'.xcworkspace.
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.
-
- Drag Object from Object library
-
- Setup
KeyboardHideManager
in Class field
- Setup
-
- Connect views with
targets
- Connect views with
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.
- Add example
- Add tests
- Add comments
- Add CI
KeyboardHideManager is released under the MIT license. See LICENSE for details.