Reputation: 972
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.
Upvotes: 0
Views: 61
Reputation: 605
you can try this:
animationView.draggingMovedBlock = {(_ view: UIView?) -> Void in
//some code
}
Upvotes: 2