Skip to content

Instantly share code, notes, and snippets.

@xmhafiz
Created October 8, 2022 14:22
Show Gist options
  • Save xmhafiz/6c51fac0d49410639c5e78a88bf259d7 to your computer and use it in GitHub Desktop.
Save xmhafiz/6c51fac0d49410639c5e78a88bf259d7 to your computer and use it in GitHub Desktop.
@IBAction func onClickedButton(_ sender: LoaderButton) {
sender.isLoading = true
// simulate sending request
DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(2)) {
sender.isLoading = false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment