Ryan Linn
Ryan Linn
I'm trying to put a `TableView` in the `BottomViewController` and have both the sizing of the `BottomView` and the scrolling of the `TableView` transition smoothly from one to the other...
### Issue Link :link: https://github.com/danielgindi/Charts/issues/5023 ### Goals :soccer: Make `MarkerView` work in MacOS, and add an example of it into the MacOS sample app. ### Implementation Details :construction: - Several...
* [x] I've read, understood, and done my best to follow the [*CONTRIBUTING guidelines](https://github.com/jjatie/Charts/blob/master/CONTRIBUTING.md). ## What did you do? Added a `LineChartViewController` to a Mac app, with a `MarkerView` subclass...
### Goals :soccer: Allow for scrolling around the chart on MacOS using two-finger trackpad scrolling, which is a more natural interaction than having to click and drag. ### Implementation Details...
Continuing from https://github.com/ftchirou/PredicateKit/issues/24 Added functionality for SwiftUI `SectionedFetchRequest` (very similar to `FetchRequest` property wrapper, but with sections). Also added `updatePredicate(_:)` functions to `FetchedResults` and `SectionedFetchResults` so that the wrapped property...
As of iOS 15 & MacOS 12, there are some new tools we can work with in SwiftUI: [SectionedFetchRequest](https://developer.apple.com/documentation/SwiftUI/SectionedFetchRequest) and [SectionedFetchResults](https://developer.apple.com/documentation/swiftui/sectionedfetchresults) which are like FetchRequest and FetchedResults just with added...
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...
[`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...