how do you add an overlay view that goes over everything. eg over a tab bar controller, and a navigation controller?
thanks
Find the "top" view in your stack, and add a subview. eg
[self.tabBarController.view addSubview:myView];
The hardest part is finding the topmost view; with a tab bar, it will be its own view.