Take a look at link
You can play a lot. You create a view controller the way that 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 within 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
}];
The MZFormSheetController automatically leaves the background translucent and performs the animations as they appear and disappear. You can set up a few things, such as leaving the background blurry:
[[MZFormSheetBackgroundWindow appearance] setBackgroundBlurEffect:YES];
[[MZFormSheetBackgroundWindow appearance] setBlurRadius:5.0];
[[MZFormSheetBackgroundWindow appearance] setBackgroundColor:[UIColor clearColor]];