Search code examples
iosswiftblock

Call objective blocks in a swift class


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.


Solution

  • you can try this:

      animationView.draggingMovedBlock = {(_ view: UIView?) -> Void in
         //some code
      }