vote up 1 vote down star
1

Is there a way to include a keyboard inside of a view? I want it to be part of the view and not be dismissed as well.

Birdfeedapp does this in it's 'add account' modal view.

flag

2 Answers

vote up 0 vote down

Either make a text field as the first responder and keep it the first responder or create your own keyboard.

link|flag
vote up 0 vote down

Simply just add this code to your view. This will show the keyboard

-(void) viewDidAppear:(BOOL)animated{
   [super viewDidAppear:animated];
   [YOURTEXTVIEW becomeFirstResponder];
}

Dont forget to vote for this post and click the tick to the left or the up arrow : ). Cheers, John.

link|flag
My problem is, I am creating the textField and adding it to a tableView during the cellForRowAtIndexPath method. So the textfield is not available at viewWillAppear. – Mike Jul 9 at 15:43

Your Answer

Get an OpenID
or

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