Programmatically align a toolbar on top of the iPhone keyboard Programmatically align a toolbar on top of the iPhone keyboard ios ios

Programmatically align a toolbar on top of the iPhone keyboard


As of iOS 3.2 there's a new way to achieve this effect:

UITextFields and UITextViews have an inputAccessoryView property, which you can set to any view, that is automatically displayed above and animated with the keyboard.

Note that the view you use should neither be in the view hierarchy elsewhere, nor should you add it to some superview, this is done for you.


So basically:

In the init method:

NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];[nc addObserver:self selector:@selector(keyboardWillShow:) name: UIKeyboardWillShowNotification object:nil];[nc addObserver:self selector:@selector(keyboardWillHide:) name: UIKeyboardWillHideNotification object:nil];

And then have methods referred to above to adjust the position of the bar:

-(void) keyboardWillShow:(NSNotification *) note{    CGRect r  = bar.frame, t;    [[note.userInfo valueForKey:UIKeyboardBoundsUserInfoKey] getValue: &t];    r.origin.y -=  t.size.height;    bar.frame = r;}

Could make it pretty by animating the position change by wrapping it in

    [UIView beginAnimations:nil context:NULL];    [UIView setAnimationDuration:0.3];//...    [UIView commitAnimations];


This is based on the existing answer from tonklon - I'm just adding a code snippet that shows a semi transparent black toolbar on top of the keyboard, together with a "done" button on the right:

UIToolbar *toolbar = [[[UIToolbar alloc] init] autorelease];[toolbar setBarStyle:UIBarStyleBlackTranslucent];[toolbar sizeToFit];UIBarButtonItem *flexButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];UIBarButtonItem *doneButton =[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(resignKeyboard)];NSArray *itemsArray = [NSArray arrayWithObjects:flexButton, doneButton, nil];[flexButton release];[doneButton release];[toolbar setItems:itemsArray];[aTextField setInputAccessoryView:toolbar];

and the -resignKeyboard looks like:

-(void)resignKeyboard {  [aTextField resignFirstResponder];}

Hope that helps someone.