Last active
January 2, 2018 13:16
-
-
Save paul1893/0b7d395e07c585123b823459dcf84962 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func tableView(_ tableView: UITableView, dragPreviewParametersForRowAt indexPath: IndexPath) -> UIDragPreviewParameters? { | |
let parameters = UIDragPreviewParameters() | |
parameters.visiblePath = yourCustomBezierPath | |
return parameters | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment