Skip to content

juanuribeo13/UIScrollView-Keyboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UIScrollView-Keyboard

[![CI Status](http://img.shields.io/travis/Juan Uribe/UIScrollView-Keyboard.svg?style=flat)](https://travis-ci.org/Juan Uribe/UIScrollView-Keyboard) Version License Platform

Installation

UIScrollView-Keyboard is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'UIScrollView-Keyboard', '~> 0.1.0'

Usage

In the viewWillAppear: of your UIViewController call the startObservingKeyboardNotifications method on the UIScrollView you are using and in the viewWillDisappear: call stopObservingKeyboardNotifications.

If you also want to dismiss the keyboard when the user taps the screen, then call dismissKeyboardWithTap.

- (void)viewDidLoad
{

	[self.scrollView dismissKeyboardWithTap];
}

- (void)viewWillAppear:(BOOL)animated {
	
	[self.scrollView startObservingKeyboardNotifications];
}

- (void)viewWillDisappear:(BOOL)animated {
	
	[self.scrollView stopObservingKeyboardNotifications];
}

NOTE: The category uses notifications to know when the keyboard shows and hides, so remember to call stopObservingKeyboardNotifications.

To run the example project, clone the repo, and run pod install from the Example directory first.

Author

Juan Uribe, [email protected]

License

UIScrollView-Keyboard is available under the MIT license. See the LICENSE file for more info.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published