Post

Replies

Boosts

Views

Activity

Reply to UISplitViewController iOS 14
Hello everyone, I was going through this same problem. User nickx found another solution. Here's the link on StackOverflow - https://stackoverflow.com/questions/63237929/uisplitviewcontroller-in-ios-14-works-as-intended-in-landscape-mode-but-not-in. The idea is to implement the new splitViewController(_:topColumnForCollapsingToProposedTopColumn:) delegate method. Here's what's worked for me. func splitViewController(_ svc: UISplitViewController, topColumnForCollapsingToProposedTopColumn proposedTopColumn: UISplitViewController.Column) -> UISplitViewController.Column { 	  // This guarantees the app launches in chart list when on portrait mode     return .primary }
Aug ’20