SwipeCellKit Versions Save

Swipeable UITableViewCell/UICollectionViewCell based on the stock Mail.app, implemented in Swift.

2.4.0

5 years ago

Added

  • UICollectionView support. You can now add swipe actions to a UICollectionViewCell by using the SwipeCollectionViewCell (#4)

2.3.2

5 years ago

Fixed

  • Add default implementation for visibleRect(for tableView: UITableView) as its optional (#201)

2.3.1

6 years ago

Fixed

  • Fix issue where swiping a cell does not work while another cell is open (#197)

2.3.0

6 years ago

Added

  • Support for vertically centered swipe actions for tall cells. (#186)

Fixed

  • Resolved issue where touching cell in swipe expantion zone resulted in immediate cell expansion (#194)
  • Reselect swipped cell if it was previously selected (#58)

2.2.0

6 years ago

Added

  • Swift 4.1 Support. (#181)
  • Allow mix use of only image or text label actions. (#139)

Fixed

  • Fix issue where multiple SwipeTableViewCells can be swipped simultaneously. (#57)

2.1.0

6 years ago

Added

  • Add support for safeAreaInsets (i.e. iPhone X) (#159, #119)

Fixed

  • Update README to fix an error with how to fulfill a delete row operation
  • Fix crash related to UIAccessablilityCustomAction if no accessability text is set on action image, or action label. (#156)
  • Fix issue where SwipeActionButton.maximumButtonWidth is not respected when its value is below the default/computed minimumButtonWidth (#150)

2.0.1

6 years ago

Fixed

  • Fix issue where swipe actions intermittently on iOS 11.2 were not displayed correctly when cell is swiped. (#126)

1.9.1

6 years ago

Fixed

  • Fix issue related to pixel misalignment for action buttons. (#50)
  • Fix crash on iOS 10.0.0 where UIFeedbackGenerator crashed on non-haptic supported devices. (#51)
  • Fix issue related to iOS 11. SwipeCellKit was inadvertently enabling/disabling various gestures on UITableView, including system level ones in hopes of disabling 3D Touch on swiped UITableViewCells. Developers must now handle the disabling/enabling of 3D touch when cell is swiped with the aid of SwipeTableViewCellDelegate. (#48)

2.0.0

6 years ago

Added

  • Add Swift 4 support
  • New highlightedTextColor property on SwipeAction. (#88)

Fixed

  • Fix issue where swipe actions intermittently were not displayed when cell is swiped. (#85)

1.9.0

6 years ago

Added

  • Added highlighted background color for action button. (#52)

Fixed

  • Correctly setting the parents project to support iOS 9.0+. (#40)
  • Fix issue where using non-SwipeTableViewCell within a UITableView interfered with didSelectRowAtIndexPath. This was caused by the assumption all cells in a UITableView extend SwipeTableViewCell. (#37) (#43)
  • Add protection against superview in point(inside:) being nil and crashing. (#46)