I'm trying to use an objective C library, in a objective C i'm using it like this :
[animationView setDraggingMovedBlock:^(UIView * view){
//some code
}];
I don't know how to call it in a swift class.
you can try this:
animationView.draggingMovedBlock = {(_ view: UIView?) -> Void in
//some code
}