IndexPath
public extension IndexPath
-
Creates an
IndexPath
given the specifiedRawRepresentable
value for the row and a section.Declaration
Swift
init<T>(row: T, section: Int) where T : RawRepresentable, T.RawValue == Int
-
Creates an
IndexPath
given the specified row and aRawRepresentable
value for the section.Declaration
Swift
init<T>(row: Int, section: T) where T : RawRepresentable, T.RawValue == Int
-
Creates an
IndexPath
given the specifiedRawRepresentable
values for both the row and section.Declaration
Swift
init<T>(row: T, section: T) where T : RawRepresentable, T.RawValue == Int
-
Undocumented
Declaration
Swift
static func == (tuple: (Int, Int), indexPath: IndexPath) -> Bool
-
Undocumented
Declaration
Swift
static func == (indexPath: IndexPath, tuple: (Int, Int)) -> Bool