I have a messaging app that has the typical UI design of a text field at the bottom of a full screen table view. I am setting that text field to be the view controller\'s
Simply use a custom view that inherits from UIToolbar instead of UIView as your inputAccessoryView.
UIToolbar
UIView
inputAccessoryView
Also don't forget to set that custom view's autoresizing mask to UIViewAutoresizingFlexibleHeight.
UIViewAutoresizingFlexibleHeight
That's it. Thank me later.