I'm using an action sheet in my tabbed application, and when it shows, Xcode logs the following message:
Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try
-[UIActionSheet showFromTabBar:]
or
-[UIActionSheet showFromToolbar:]
instead of
-[UIActionSheet showInView:].
But showFromTabBar takes a UITabBar argument, and the UITabBarset up in the Interface Builder (tab bar controller or view controller, doesn't matter) won't connect to any UITabBar I create in any header file. So I can't call showFromTabBar on the tab bar I actually have.
Any suggestions about how to proceed?
