Releases: jeffkibuule/JSKTimerView
Releases · jeffkibuule/JSKTimerView
JSKTimerView v0.4.1
- Fixes bug where scrolling UIScrollView would cause timer to pause due to timer events not firing
JSKTimerView v0.4.0
- Timer is now always scheduled to start from the main thread.
- Ensure timer is invalidated when view is invalidated.
JSKTimerViewDelegate
protocol methodtimerDidFinish
now passes reference to self to determine which timer just finished.
JSKTimerView v0.3.0
- Add new method
startTimerWithEndDate:
- Make sure that the last second always has the almostFinishedProgressColor (red)
- Add more unit tests
JSKTimerView v0.2.2
- Add
labelTextColor
property to allow for changing time remaining text color. (Thanks @pyraego) - Fix bug where time remaining text was incorrectly calculated when time was greater than 60 minutes (Thanks @pyraego)
- Code cleanup to remove
timer
from many internal property names
JSKTimerView v0.2.1
- Removed unnecessary
dispatch_after
instopTimer
, meaning end color was set at correct time.