views:

123

answers:

2

How can I get my UIPickerView to apear on top of the TabBar?

http://bit.ly/aSFKYY

This is a TabBar Application and that NIB file contain 2 views

alt text

That I animate to show / hide instead of the keyboard, but the keyboard animates on top of all UIViews.

How can I accomplish this with my Custom View?

A: 

To display the picker view, just put it in its own view. Then set that view as the textfields 'inputView` property.

When the field is selected, the view should appear in place of the keyboard.

TechZen
I get what is the method to use: http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITextField_Class/Reference/UITextField.html#//apple_ref/occ/instp/UITextField/inputView But I can't figure it out to work with it :-/BTW, this is only available for iPad (Available in iPhone OS 3.2 and later.) --> Images and screencast in my question specifies iPhone/iPod
balexandre
Yep, your right, my bad. That's the trouble with jumping from OS to OS.
TechZen
A: 

Could you use use bringSubviewToFront: and sendSubviewToBack: method on your views?

Rob
it does not act upon it as the TabBar in in other controller (perhaps it's cause of that) :-(
balexandre