Skip to content

Instantly share code, notes, and snippets.

@usagimaru
Last active June 15, 2024 19:19
Show Gist options
  • Save usagimaru/a14866bd6630d6c1852b8c8fe965a10a to your computer and use it in GitHub Desktop.
Save usagimaru/a14866bd6630d6c1852b8c8fe965a10a to your computer and use it in GitHub Desktop.
Toggling NSSplitView’s pane with animation.
@objc func toggleMainView(_ sender: Any) {
let splitViewItem: NSSplitViewItem = self.splitViewItems[0]
splitViewItem.animator().isCollapsed = !splitViewItem.isCollapsed
}
@objc func toggleInspector(_ sender: Any) {
let splitViewItem: NSSplitViewItem = self.splitViewItems[1]
splitViewItem.animator().isCollapsed = !splitViewItem.isCollapsed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment