do you know a way to continuously call a function from a UIBarButtonItem in MDC if the button is kept pressed and then call it once if pressed once? Like a fwd/play behaviour.
UPDATE: I am not using the Storyboard
My button
let ffwButton = UIBarButtonItem(image: #imageLiteral(resourceName: "fwd"), style: .plain, target: self, action: #selector(clickfwd))
Thanks.