IGListMoveIndex


@interface IGListMoveIndex : NSObject

An object representing a move between indexes.

  • An index in the old collection.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) NSInteger from;

    Swift

    var from: Int { get }
  • to

    An index in the new collection.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) NSInteger to;

    Swift

    var to: Int { get }