After reading the documentation on UIResponder, i don't think so.
inputAccessoryViews are attached to the keyboard, so unless the keyboard can be under another view, the inputAccessoryView can't.
You can though, create a normal view with the width of the keyboard, use the keyboard notifications to position your view on the screen right above the keyboard. Since this view won't be "attached" to the keyboard, you can put them under your desired view, for whatever effect you need.
After reading the documentation on UIResponder, i don't think so.
inputAccessoryViews
are attached to the keyboard, so unless the keyboard can be under another view, theinputAccessoryView
can't.You can though, create a normal view with the width of the keyboard, use the keyboard notifications to position your view on the screen right above the keyboard. Since this view won't be "attached" to the keyboard, you can put them under your desired view, for whatever effect you need.