Skip to content

Instantly share code, notes, and snippets.

View roymax's full-sized avatar

Roy roymax

View GitHub Profile
@mjjimenez
mjjimenez / ScrollViewController.m
Created December 14, 2013 09:21
Autoscroll of UIScrollView
// Call this method somewhere in your view controller setup code.
- (void)registerForKeyboardNotifications
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];