Reputation: 53
This may be a simple one but Im trying to find an elegant solution to it. Is there a way to make the segue transition go left to right rather than the default bottom up other than by embedding a Navigation Controller? Ive used all the available storyboard segues and they dont make any noticeable change
Upvotes: 1
Views: 1597
Reputation: 53
Thanks for that. I found that the best solution for me was to just embed a Navigation Controller but then hiding it by using the code:
self.navigationController?.navigationBarHidden = true
Upvotes: 2