Git Product home page Git Product logo

evadne / dakeyboardcontrol Goto Github PK

View Code? Open in Web Editor NEW

This project forked from danielamitay/dakeyboardcontrol

3.0 2.0 0.0 200 KB

DAKeyboardControl allows you to easily add keyboard awareness and scrolling dismissal (a receding keyboard ala iMessages app) to any UIView, UIScrollView or UITableView with only 1 line of code. DAKeyboardControl automatically extends UIView and provides a block callback with the keyboard's current origin.

License: Other

Objective-C 100.00%

dakeyboardcontrol's Introduction

DAKeyboardControl

DAKeyboardControl allows you to easily add keyboard awareness and scrolling dismissal (a receding keyboard ala iMessages app) to any UIView, UIScrollView or UITableView with only 1 line of code. DAKeyboardControl automatically extends UIView and provides a block callback with the keyboard's current origin.

DAKeyboardControl now fully supports orientation changes, iPhone & iPad, and is even aware of keyboard undocking or splitting on the iPad.

No hacks, fully App Store safe.

Screenshot

Video demonstration on YouTube

Installation

  • Copy over the DAKeyboardControl folder to your project folder.
  • #import "DAKeyboardControl.h"

Usage

Example project included (DAKeyboardControlExample)

Adding pan-to-dismiss (functionality introduced in iMessages)

[self.view addKeyboardPanningWithActionHandler:^(CGRect keyboardFrameInView) {
        // Move interface objects accordingly
		// Animation block is handled for you
    }];

Adding keyboard awareness (appearance and disappearance only)

[self.view addKeyboardNonpanningWithActionHander:^(CGRect keyboardFrameInView) {
        // Move interface objects accordingly
		// Animation block is handled for you
    }];

Supporting an above-keyboard input view

The keyboardTriggerOffset property allows you to choose at what point the user's finger "engages" the keyboard.

self.view.keyboardTriggerOffset = 44.0f;	// Input view frame height

[self.view addKeyboardPanningWithActionHandler:^(CGRect keyboardFrameInView) {
        // Move input view accordingly
		// Animation block is handled for you
    }];

Dismissing the keyboard (convenience method)

[self.view hideKeyboard];

Notes

Tested in App Store!

All code is iOS 4.0+ safe and well documented, and is already in production apps on the App Store.

Using with a UITextView

Make sure to call addKeyboardPanningWithActionHandler: on the UITextView itself if you wish for it to allow panning inside itself.

Keyboard Delay On First Appearance

Standard iOS issue. Use Brandon William's UIResponder category to cache the keyboard before first use.

Automatic Reference Counting (ARC) support

DAKeyboardControl was made with ARC enabled by default.

Contact

If you use/enjoy DAKeyboardControl, let me know!

License

MIT License

Copyright (c) 2012 Daniel Amitay (http://danielamitay.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

dakeyboardcontrol's People

Contributors

cool8jay avatar danielamitay avatar evadne avatar hswolff avatar zman0900 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.