Last active
October 8, 2017 10:46
-
-
Save dmytro-anokhin/01600f64c331478b39ff759b5a0e5ed5 to your computer and use it in GitHub Desktop.
DisplayMode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum DisplayMode { | |
// Both view controllers are displayed at the same time, side-by-side | |
case sideBySide | |
// One view controller at a time is displayed | |
case one | |
} | |
private(set) var displayMode: DisplayMode = .sideBySide |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment