Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Add/Update/Small] Reset the current card Index to the some value instead of 0 #481

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Pod/Classes/KolodaView/KolodaView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ open class KolodaView: UIView, DraggableCardDelegate {
}

// MARK: Private
private func clear() {
currentCardIndex = 0
private func clear(index: Int = 0) {
currentCardIndex = index

for card in visibleCards {
card.removeFromSuperview()
Expand Down Expand Up @@ -646,8 +646,8 @@ open class KolodaView: UIView, DraggableCardDelegate {
}
}

public func resetCurrentCardIndex() {
clear()
public func resetCurrentCardIndex(index: Int = 0) {
clear(index: index)
reloadData()
}

Expand Down