mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-12 04:10:36 +01:00
Displaying nested sections #257
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @eraydiler on GitHub (Feb 14, 2019).
Hello,
I need to display nested sectioned data like;
Section
SubSection
Item
Item
Section
SubSection
Item
SubSection
Item
Item
Item
...
Also need to track any changes and reflect them in the UI with listmonitor.
I found this question with a coredata related solution;
https://stackoverflow.com/questions/37203272/nested-sections-in-uitableview-and-core-data
When I tried to apply it with CoreStore, I couldn't give multiple arguments to list monitor's sectionBy(...). which matches with groupBy in coredata as far as I can understand.
Is there a way to apply coredata solution mentioned in the link with CoreStore?
Or do I need something else to represent items in nested sections like the sketch above?