|
@@ -30,9 +30,15 @@ class NCSplitViewController: UISplitViewController {
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
super.viewDidLoad()
|
|
|
-
|
|
|
+
|
|
|
self.delegate = self
|
|
|
self.preferredDisplayMode = .allVisible
|
|
|
+ if UIScreen.main.bounds.width > UIScreen.main.bounds.height {
|
|
|
+ self.maximumPrimaryColumnWidth = UIScreen.main.bounds.width
|
|
|
+ } else {
|
|
|
+ self.maximumPrimaryColumnWidth = UIScreen.main.bounds.height
|
|
|
+ }
|
|
|
+ self.preferredPrimaryColumnWidthFraction = 0.4
|
|
|
|
|
|
let navigationController = viewControllers.first as? UINavigationController
|
|
|
if let tabBarController = navigationController?.topViewController as? UITabBarController {
|