0

I have a tabviewcontroller and within that is a navigationcontroller and tableview. When i tap on one of the table rows I want a custom keyboard to pop up. (This will be some simple plus and minus buttons to increase/decrease a counter on the tablerow item)

I'm assuming I create a View Controller and add it as a subview but how do I add it so that it pops over the tab bar?

What would be the general steps to do this?

zio
  • 2,145
  • 4
  • 21
  • 25

1 Answers1

2

Custom Views for Data Input

jtbandes
  • 115,675
  • 35
  • 233
  • 266
  • Thanks. Works great except I can't set the custom keyboard height. It is set in my custom view but when I test it, it is still the standard height. – zio Jul 18 '11 at 00:55
  • I noticed this in the docs, maybe this is your problem? "If UIKit encounters an input view with a UIViewAutoresizingFlexibleHeight value in its autoresizing mask, it changes the height to match the keyboard." – jtbandes Jul 18 '11 at 00:58
  • I took off the default autoresizing options on the view and it works fine now. Thank you. – zio Jul 20 '11 at 12:29