mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-14 07:33:28 +01:00
sectionIndexTitles and sectionForSectionIndexTitle #26
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 @markkrenek on GitHub (Jan 5, 2016).
Originally assigned to: @JohnEstropia on GitHub.
How do we get access to NSFetchedResultsController's sectionIndexTitles and sectionForSectionIndexTitle when using a sectioned list?
@JohnEstropia commented on GitHub (Jan 6, 2016):
@markkrenek There's currently no interface to expose these (yet). Let me push an update within the day.
If you need to, you can workaround with these:
Getting Section Index Titles:
Getting Index for an Index Title:
@JohnEstropia commented on GitHub (Jan 6, 2016):
@markkrenek The workaround I posted a while ago is WRONG, sorry about that. I forgot that section indexes are independent of the sections themselves. Anyway you can access these methods from
ListMonitornow:See
71c3abc4f3for details.@markkrenek commented on GitHub (Jan 6, 2016):
Works great. Thanks John. I've just started experimenting with this library, and so far it is great.
@JohnEstropia commented on GitHub (Jan 6, 2016):
@markkrenek Glad it works :) Thanks for the feedback!