SectionBy
public struct SectionBy<O> where O : DynamicObject
extension SectionBy: CustomDebugStringConvertible, CoreStoreDebugStringConvertible
The SectionBy clause indicates the key path to use to group the ListMonitor objects into sections. An optional closure can also be provided to transform the value into an appropriate section index title:
let monitor = dataStack.monitorSectionedList(
From<Person>(),
SectionBy("age") { "Age \($0)" },
OrderBy(.ascending("lastName"))
)
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init(_ sectionKeyPath: KeyPathString)Parameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init( _ sectionKeyPath: KeyPathString, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Declaration
Swift
public var debugDescription: String { get }
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, T>)Parameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, T>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, FieldContainer<O>.Stored<T>>) where T : FieldStorableTypeParameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, FieldContainer<O>.Virtual<T>>)Parameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, FieldContainer<O>.Coded<T>>)Parameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, ValueContainer<O>.Required<T>>) where T : ImportableAttributeTypeParameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, ValueContainer<O>.Optional<T>>) where T : ImportableAttributeTypeParameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, TransformableContainer<O>.Required<T>>) where T : NSCoding, T : NSCopyingParameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sectionsDeclaration
Swift
public init<T>(_ sectionKeyPath: KeyPath<O, TransformableContainer<O>.Optional<T>>) where T : NSCoding, T : NSCopyingParameters
sectionKeyPaththe key path to use to group the objects into sections
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, ValueContainer<O>.Required<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, FieldContainer<O>.Stored<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, FieldContainer<O>.Virtual<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, FieldContainer<O>.Coded<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, ValueContainer<O>.Optional<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, TransformableContainer<O>.Required<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
-
Initializes a
SectionByclause with the key path to use to groupListMonitorobjects into sections, and a closure to transform the value for the key path to an appropriate section index titleImportant
Some utilities (such asListMonitors) may keepSectionBys in memory and may thus introduce retain cycles if reference captures are not handled properly.Declaration
Swift
public init<T>( _ sectionKeyPath: KeyPath<O, TransformableContainer<O>.Optional<T>>, sectionIndexTransformer: @escaping (_ sectionName: String?) -> String? )Parameters
sectionKeyPaththe key path to use to group the objects into sections
sectionIndexTransformera closure to transform the value for the key path to an appropriate section index title
View on GitHub
SectionBy Structure Reference