I have a standard UITableView with a UINavigation bar at the top with the standard back button, etc.
I have a button that pops up a "modal dialog" box, which is a view that sits on top of and almost obscures (but doesn't quite) the view underneath. Problem is, the buttons (including the "back" nav button) are still visible and thus touchable.
I've tried setUserInteractionEnabled:NO
on the view
of the UITableViewController, but that doesn't seem to work-- at least the navigation items are still touchable. But the navigationItem isn't a view subclass.
Any other ideas? Missing something obvious?
Thanks.