ButtonProgressBar-iOS icon indicating copy to clipboard operation
ButtonProgressBar-iOS copied to clipboard

A small and flexible (well documented) UIButton subclass with animated loading progress, and completion animation.

Results 3 ButtonProgressBar-iOS issues
Sort by recently updated
recently updated
newest added

- [x] update to Swift 5 - [x] adapter for xcode 12 - [x] upper to 9.0 - [x] remove the `.swift-version` file which is now deprecated and only use...

``` func loadDeterminate() { self.progressButton.stopIndeterminate() self.progressButton.resetProgress() let timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(self.animateDeterminate), userInfo: time, repeats: true) RunLoop.current.add(timer, forMode: .defaultRunLoopMode) } @objc func animateDeterminate(sender: Timer) { if self.progressButton.progress...