Take a look at the https://github.com/m1entus/MZFormSheetController
You can play a lot. You create a view controller the way you and the storyboard you arrow the Storyboard ID to be able to instantiate it in the code, in the example below: "Nav".
To open a new View Controller inside the Form Sheet:
UIViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"nav"];
// abre o novo view controller
[self mz_presentFormSheetController:vc animated:YES completionHandler:^(MZFormSheetController *formSheetController) {
//seu código
}];
Mzformsheetcontroller automatically leaves the translucent background and performs the animations by appearing and disappearing. You can set up some things, like blurring the background:
[[MZFormSheetBackgroundWindow appearance] setBackgroundBlurEffect:YES];
[[MZFormSheetBackgroundWindow appearance] setBlurRadius:5.0];
[[MZFormSheetBackgroundWindow appearance] setBackgroundColor:[UIColor clearColor]];
I’ll look for Blur I believe that is my goal. Thank you!
– David Batista