OutlineView icon indicating copy to clipboard operation
OutlineView copied to clipboard

OutlineView for SwiftUI on macOS

Results 7 OutlineView issues
Sort by recently updated
recently updated
newest added

https://user-images.githubusercontent.com/46857148/217615344-4e7644b9-bf52-4b2a-adb1-b7aa4a871c20.mov

how to add items dynamically and not have the tree refresh

As I mentioned in https://github.com/Sameesunkaria/OutlineView/issues/12 `NSOutlineViewDelegate` recommends reusing cell views. I simplified my original code to use reusable cells into one that allows implementations of `OutlineView` to use either the...

I ran into an issue where making edits to an attribute in the `OutlineView` needed to change properties of the provided `TableViewCell`s, but no state change was causing the cells...

I discovered a possible bug while trying to debug another issue I was running into, where pressing 'enter' on a row with editable content was not enabling text editing (very...

Currently, only single selection seems to be supported. How about making Selection support Set?

[`NSOutlineViewDelegate.outlineView(_:viewFor:item:)`](https://developer.apple.com/documentation/appkit/nsoutlineviewdelegate/1535566-outlineview) discussion says that the view creation should use reusable cell views: >It is recommended that the implementation of this method first call the NSTableView method [makeView(withIdentifier:owner:)](https://developer.apple.com/documentation/appkit/nstableview/1535482-makeview) passing, respectively, the...