TOSplitViewController
TOSplitViewController copied to clipboard
A split view controller that can display up to three view controllers at once.
### Hiding Primary Column Adds the following properties: - `primaryColumnIsHidden` - `collapseAnimationDuration` Example has been updated to include the above demonstration. ### Trait Collection Overrides When overriding the trait collections,...
There's no clean way to hide/show the primary column, so I've used the following hack: ```swift to_svc.maximumNumberOfColumns = 3 to_svc.viewWillAppear(true) ``` However, this doesn't animate the column transition. What's the...
Is it possible to adjust the width of each controller?