vote up 5 vote down star
11

In several cases I want to add a toolbar to the top of the iPhone keyboard (as in iPhone Safari when you're navigating form elements, for example).

Currently I am specifying the toolbar's rectangle with constants but because other elements of the interface are in flux - toolbars and nav bars at the top of the screen - every time we make a minor interface change, the toolbar goes out of alignment.

Is there a way to programatically determine the position of the keyboard in relation to the current view?

flag

5 Answers

vote up 19 vote down check

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];
link|flag
Was poking around my old stuff this morning and noticed that this is a much better and the most comprehensive answer. Thanks! – Rob Drimmie Jul 12 at 14:18
vote up 0 vote down

the code work tool bar h41 keyboard h 216

can u do the calculation with n if n else so the tool bar follow the keyboard n view position on screen

link|flag
vote up 0 vote down

Thanks for the responses. I am using essentially the same technique shown above by Josh, and it looks exactly the same as it would if I'd been able to make the bar a subview of the keyboard (but it requires more code).

link|flag
vote up 18 vote down

If you register for keyboard notifications, ie UIKeyboardWillShowNotification UIKeyboardWillSHideNotification, etc, the notification you receive will contain the bounds of the keyboard in the userInfo dict (UIKeyboardBoundsUserInfoKey).

See the UIWindow class reference.

link|flag
vote up -6 vote down

There's no way (AFAIK) to get the dimensions of the keyboard view. It is however constant, at least in every iPhone version so far.

If you calculate the toolbar position as an offset from the BOTTOM of your view, and take the size of your view into account, then you should not have to worry whether a navbar is present or not.

E.g.

#define KEYBOARD_HEIGHT 240 // example - can't remember the exact size
#define TOOLBAR_HEIGHT 30

toolBarRect.origin.y = viewRect.size.height - KEYBOARD_HEIGHT - TOOLBAR_HEIGHT;

// move toolbar either directly or with an animation

Instead of a define, you could easily create a keyboardHeight function that returns the size based on whether the keyboard is being displayed, and move this toolbar positioning into a separate function that reorganizes your layout.

Also it can depend on where you do this positioning as it's possible the size of your view may change between being loaded and shown based on your navbar setup. I believe the best place to do it would be in viewWillAppear.

link|flag
This worked great, thanks! So far I've been doing this calculation in the selector triggered by UIKeyboardDidShowNotification. I've only tested in a couple of places, but it looks like a good spot. – Rob Drimmie Oct 1 '08 at 18:00
Yes you can get the size - totally wrong! see below answer – Isaac Waller May 15 at 1:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.