SwipeCellKit
SwipeCellKit copied to clipboard
Open swipe options on click on cell
Is there any way to open the swipe options of right swipe by clicking on the cell with keeping the existing behavior.
Any help will appreciated. Thanks
You can call showSwipe(orientation: .right) from inside of your SwipeTableViewCell.
I want to show it here
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)
Is it possible?
Can you show me some code snippets for showing the swipe?
Maybe you can try something like this
let cell = collectionView.cellForItem(at: indexPath) as? SwipeCollectionViewCell
cell?.showSwipe(orientation: .right)