All Projects → bonyadmitr → Keyboardhidemanager

bonyadmitr / Keyboardhidemanager

Licence: mit
Codeless manager to hide keyboard by tapping on views for iOS written in Swift

Programming Languages

swift
15916 projects
swift3
66 projects

Projects that are alternatives of or similar to Keyboardhidemanager

Loadingshimmer
An easy way to add a shimmering effect to any view with just one line of code. It is useful as an unobtrusive loading indicator.
Stars: ✭ 1,180 (+1970.18%)
Mutual labels:  framework, swift-framework, library, cocoapods
Framework7
Full featured HTML framework for building iOS & Android apps
Stars: ✭ 16,560 (+28952.63%)
Mutual labels:  framework, library, touch
Shadowview
An iOS Library that makes shadows management easy on UIView.
Stars: ✭ 391 (+585.96%)
Mutual labels:  framework, library, cocoapods
Taniwhatextfield
My first cocoapod framework
Stars: ✭ 26 (-54.39%)
Mutual labels:  framework, swift-framework, cocoapods
Uitextfield Navigation
🏄‍♂️ UITextField-Navigation makes it easier to navigate between UITextFields and UITextViews
Stars: ✭ 436 (+664.91%)
Mutual labels:  keyboard, cocoapods, storyboard
Greedo Layout For Ios
Full aspect ratio grid layout for iOS
Stars: ✭ 837 (+1368.42%)
Mutual labels:  library, cocoapods
Styledecorator
Easy string decoration with styles
Stars: ✭ 17 (-70.18%)
Mutual labels:  library, cocoapods
Cheatyxml
CheatyXML is a Swift framework designed to manage XML easily
Stars: ✭ 23 (-59.65%)
Mutual labels:  swift-framework, cocoapods
Core
Runn Me! core library
Stars: ✭ 31 (-45.61%)
Mutual labels:  framework, library
Koyomi
Simple customizable calendar component in Swift 📆
Stars: ✭ 716 (+1156.14%)
Mutual labels:  swift-framework, cocoapods
Androidlibs
🔥正在成为史上最全分类 Android 开源大全~~~~(长期更新 Star 一下吧)
Stars: ✭ 7,148 (+12440.35%)
Mutual labels:  framework, library
Swiftlyext
SwiftlyExt is a collection of useful extensions for Swift 3 standard classes and types 🚀
Stars: ✭ 31 (-45.61%)
Mutual labels:  swift-framework, cocoapods
Cyltabbarcontroller
[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】
Stars: ✭ 6,605 (+11487.72%)
Mutual labels:  cocoapods, storyboard
Slim.js
Fast & Robust Front-End Micro-framework based on modern standards
Stars: ✭ 789 (+1284.21%)
Mutual labels:  framework, library
Vuesax Next
Vuesax v4: framework components for Vuejs
Stars: ✭ 773 (+1256.14%)
Mutual labels:  framework, library
Swiftyonboard
A swifty iOS framework that allows developers to create beautiful onboarding experiences.
Stars: ✭ 952 (+1570.18%)
Mutual labels:  framework, cocoapods
Tangramkit
TangramKit is a powerful iOS UI framework implemented by Swift. It integrates the functions with Android layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,LayoutSizeClass to build your App 自动布局 UIView UITableView UICollectionView
Stars: ✭ 984 (+1626.32%)
Mutual labels:  cocoapods, storyboard
Chrome Virtual Keyboard
Touch-friendly Virtual Keyboard for Chrome browser
Stars: ✭ 35 (-38.6%)
Mutual labels:  keyboard, touch
Inputsystem
An efficient and versatile input system for Unity.
Stars: ✭ 1,013 (+1677.19%)
Mutual labels:  keyboard, touch
Text Classification Keras
📚 Text classification library with Keras
Stars: ✭ 53 (-7.02%)
Mutual labels:  framework, library

KeyboardHideManager

Icon

Language CocoaPods Compatible Platform License Awesome-ios Awesome-swift Awesome

KeyboardHideManager - codeless manager to hide keyboard by tapping on views for iOS written in Swift.

preview

Structure

Features

  • [x] 3 simple actions to setup
  • [x] Multiple views setup
  • [x] Codeless usage
  • [x] Xib support

Requirements

  • Swift 3.0+
  • iOS 8.0+

Installation

CocoaPods

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:

platform :ios, '9.0'
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.

Carthage (not supported)

KeyboardHideManager cannot be used with Carthage in IB due .framework issue. Use CocoaPods or Manual install.

Manually

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.

Usage

    1. Drag Object from Object library

usage_1

    1. Setup KeyboardHideManager in Class field

usage_2

    1. Connect views with targets

usage_3

User Iteraction Enabled

Target must be UIView subclass and user iteraction enabled is on. You can set it in IB in View section: (example for UILabel)

user_iteraction_enabled

or in code:

someView.isUserInteractionEnabled = true

Xib support

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.

To do

  • [x] Add example
  • [x] Add tests
  • [x] Add comments
  • [ ] Add CI

License

KeyboardHideManager is released under the MIT license. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].