FUISingleActionProgressIndicator

public class FUISingleActionProgressIndicator : FUIProgressIndicatorControl

The progress indicator of the FUIObjectTableViewCell within the FUISingleActionAccessoryView.

The indicator has an optional selection handler triggered by UIControlEvent.touchUpInside

Usage

let progressView = FUISingleActionProgressIndicator()
progressView.didSelectHandler = { progressView in
   print("Indicator Selected")
}
  • Optional closure handler, for responding to UIControlEvent.touchUpInside.

    Declaration

    Swift

    open var didSelectHandler: ((FUISingleActionProgressIndicator) -> Void)?