Open nico75005 opened 7 years ago
I want to show the swipe button on some of my table view cell.
To do that, in the data source method
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
I add this
cell.showSwipe(.leftToRight, animated: false)
The left swipe buttons are showing but the content of the cell just disappear. It reappears once I swipe to the left. If I use animated: true then it works properly (but I don't want any animation in my case).
animated: true
Any idea? Bug?
Thanks
I Cell's content disappear too. when I swipeToLeft and reloadData at the same time
I want to show the swipe button on some of my table view cell.
To do that, in the data source method
I add this
The left swipe buttons are showing but the content of the cell just disappear. It reappears once I swipe to the left. If I use
animated: true
then it works properly (but I don't want any animation in my case).Any idea? Bug?
Thanks