Created
July 16, 2022 19:51
-
-
Save jonathanwork/82ca287b6983c35e597a38b388ea3a02 to your computer and use it in GitHub Desktop.
this is countdown in swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // countdown 10 seconds | |
| let deadlineTime = DispatchTime.now() + .seconds(15) | |
| DispatchQueue.main.asyncAfter(deadline: deadlineTime) { | |
| } | |
| let deadTimeSegue = DispatchTime.now() + .seconds(60) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment