mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
CoreStore.monitorSectionedList ordering issue. #286
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 @matrosovDev on GitHub (Aug 15, 2019).
Need your help! Can you please comment on this question
@JohnEstropia commented on GitHub (Aug 17, 2019):
https://stackoverflow.com/questions/57515496/swift-corestore-ordering-list-monitor-issue/57538668#57538668
@matrosovDev commented on GitHub (Aug 30, 2019):
the question is answered by John here:
Just want to post it here as well. If you have cities and states as in my example and you want to listen to cities updates which are sectioned by states, you need to .orderBy states names and also .orderBy cities name not just cities then you will see ordering in the section instead of all ordering through all section. This code work for me:
Thanks @JohnEstropia =)