IGListMoveIndex

Objective-C


@interface IGListMoveIndex : NSObject

Swift

class ListMoveIndex : NSObject

An object representing a move between indexes.

  • An index in the old collection.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger from;

    Swift

    var from: Int { get }
  • to

    An index in the new collection.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger to;

    Swift

    var to: Int { get }