vote up 6 vote down star
3

Hello,

I'm looking for a way to slide the keyboard into view from the right, like what happens in the Contacts application when you edit a note.

My problem is that when I call [someTextView becomeFirstResponder] in viewWillAppear, the keyboard immediatly pops up with no animation. And when I call it in viewDidAppear, the view first slides in from the right (UINavigationController does the sliding), and then the keyboard slides in from the bottom.

Is it possible to have the keyboard slide in from the right, together with the view?

flag
I don't have an answer for you, but I noticed today that AIM does the same thing as Contacts. So presumably it's possible. – tewha Jul 16 at 23:22

3 Answers

vote up 4 vote down check

All you need to do is tell the text view in question to become the first responder in the -viewDidLoad method of the view controller you are pushing onto the navigation stack:

- (void)viewDidLoad {
    [someTextView becomeFirstResponder];
    [super viewDidLoad];
}

I have tested this and it works. The keyboard slides in from the right along with the view.

link|flag
If he says it works, it probably works... heh ;) – Jasarien Jul 18 at 21:37
I have also written a small test using this solution and it works exactly as the Contacts app does when editing a note. +1! – Jasarien Jul 18 at 21:57
This is the correct answer, although not entirely for my specific case (it put me on the right track though). My text view was inside a table single view cell (due to me wanting the rounded border and being lazy). Apparently, the keyboard doesn't like this. It turned out to be the cause of the keyboard instantly appearing rather than sliding in from the right. Your answer helped me track down the cause of my problem, so thank you! – Toon Van Acker Jul 19 at 1:03
That'll teach me to be lazy... – Toon Van Acker Jul 19 at 1:11
You're welcome. :) – titaniumdecoy Jul 19 at 1:25
vote up 1 vote down

I think this may be what you're looking for.

http://blog.weareuproar.com/?p=13

link|flag
That's an interesting blog post, but alas not what I'm looking for. – Toon Van Acker Jul 15 at 18:21
vote up 1 vote down

You could try sending the becomeFirstResponder message to the new view controller before you push it onto the stack. For example:

-(void)functionWhereYouPushTheNewViewController {
  yourNewViewController *newVC = [[yourNewViewController alloc] init];
  [newVC.yourTextView becomeFirstResponder];
  [self.navigationController pushViewController:newVC animated:YES];
}

I have found that changing animations on things like they keyboard is pretty tough though, and if you read the Human Interface Guidelines Apple makes it pretty clear that they want certain things to act in certain ways, all the time. There are ways to change the behaviors of certain animations but they often involve undocumented API calls and are grounds for rejection from the app store. It would be a violation of HIG to have pushed views slide up from the bottom, for example.

Hope this helps.

link|flag
Oddly enough, if I call becomeFirstResponder before pushViewController it does nothing. Perhaps because the view hasn't actually been made part of the interface yet. Calling it after pushViewController causes the keyboard to just pop up instantly. If getting the keyboard to behave is as hard as you say (although Apple does it somehow in the Contacts app), then perhaps I should just leave it be. – Toon Van Acker Jul 16 at 0:39

Your Answer

Get an OpenID
or

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