If you're using transitioningDelegate
(not the case in this question's example), also set modalPresentationStyle
to .Custom
.
Swift
let vc = storyboard.instantiateViewControllerWithIdentifier("...")
vc.transitioningDelegate = self
vc.modalPresentationStyle = .Custom