Home > Software engineering >  RxSwift Countdown time up to 0.1 seconds
RxSwift Countdown time up to 0.1 seconds

Time:03-16

I get the topic but it still countdown the time to second. I want to count down timer up to 0.1s How can i solve that? The code i follow: countdown timer by `RxSwift`

Thanks every one

CodePudding user response:

Use .milliseconds(100) instead of .seconds(1)

  • Related