RBStoryboardLink icon indicating copy to clipboard operation
RBStoryboardLink copied to clipboard

ModalTransitionStyle is not working from Interface builder.

Open danielgomezrico opened this issue 9 years ago • 0 comments

If I set the modalTransitionStyle for my controller, even on the RBStoryboardLink object it is not changing.

I ended up setting the transition style in performSegueWithIdentifier...

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) {

    if var rbSegue = segue as? RBStoryboardModalSegue {
        rbSegue.transitionStyle = UIModalTransitionStyle.CrossDissolve
    }
   }

But I think is not a good way... I'm doing it wrong?

danielgomezrico avatar Dec 09 '14 14:12 danielgomezrico