Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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, juanuribeo13@gmail.com

License

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

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages