- July 11, 2025
- Mins Read
This is a demo that uses a TableViewDragger
.
Add the following to your Podfile
:
pod “TableViewDragger”
Add the following to your Cartfile
:
github “KyoheiG3/TableViewDragger”
weak var delegate: TableViewDraggerDelegate?
TableViewDragger
.
weak var dataSource: TableViewDraggerDataSource?
TableViewDragger
.
var isHiddenOriginCell: Bool
true
if want to hide the original cell.true
.
var zoomScaleForCell: CGFloat
1
.
var alphaForCell: CGFloat
1
.
var opacityForShadowOfCell: Float
0.4
.
var scrollVelocity: CGFloat
1
.
init(tableView: UITableView)
UITableView
want to drag.
optional func dragger(_ dragger: TableViewDragger, cellForRowAt indexPath: IndexPath) -> UIView?
optional func dragger(_ dragger: TableViewDragger, indexPathForDragAt indexPath: IndexPath) -> IndexPath
func dragger(_ dragger: TableViewDragger, moveDraggingAt indexPath: IndexPath, newIndexPath: IndexPath) -> Bool
true
. require a call to moveRowAtIndexPath:toIndexPath:
of UITableView and rearranged of data.
optional func dragger(_ dragger: TableViewDragger, shouldDragAt indexPath: IndexPath) -> Bool
true
.A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...