Add overlay view on all other views
3 answers
Use a modal view controller. Read this guide:
The view of the view controller itself is easy:
UINavigationController *navigationController = [[UINavigationController alloc]
initWithRootViewController:addController];
[self presentModalViewController:navigationController animated:YES];
+2
a source to share