Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

timerDidEnd Function not working #37

Open
junaidxabd opened this issue Mar 1, 2021 · 1 comment
Open

timerDidEnd Function not working #37

junaidxabd opened this issue Mar 1, 2021 · 1 comment

Comments

@junaidxabd
Copy link

I added the timerDidEnd function to my Viewcontroller but it doesn't seem run.

    func timerDidEnd(sender: SRCountdownTimer, elapsedTime: TimeInterval) {
        print("ended")
    }
  
@AdrienRoux
Copy link

For this function to run, you need to :

  • set the Delegate to self in the view in viewDidLoad()
  • add this function in an extension of SRCountdownTimerDelegate in your ViewController
    example :
    extension CircularTimerRingViewController: SRCountdownTimerDelegate { func timerDidEnd(sender: SRCountdownTimer, elapsedTime: TimeInterval) { // your code... } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants