Reputation: 1460
In one particular situation in storyboard I'm getting annoying issue. I have one controller with 2 segue to it.
First Segue: from UIController(1 from pic) to UIController(3 from pic) all looks fine
Second Segue: from ContainerView(2 from pic) to UIController(3 from pic) makes target UIController(3, 4 from pic) scene shrink to the same height like ContainerView(2 from pic). How to avoid it? Items 2 and 3 should have same height like item 1.
How to fix it in storyboard?
P.S. When I'm running app all looks fine
Upvotes: 0
Views: 252
Reputation: 4743
You could fix it by setting the storyboard segue to custom.
However, IMHO a custom segue should only be used if the default segues of the iOS SDK are not sufficient. Creating a custom segue requires you to subclass the UIStoryboardSegue class and override the method, named perform. This method will contain the custom animation logic to be implemented.
Upvotes: 0