Skip to content

Instantly share code, notes, and snippets.

@alexj70
Last active November 23, 2022 05:27
Show Gist options
  • Save alexj70/e2ec279604cbc058cdd04c8bcce4ae4d to your computer and use it in GitHub Desktop.
Save alexj70/e2ec279604cbc058cdd04c8bcce4ae4d to your computer and use it in GitHub Desktop.
Guard self

Guard self

guard let `self` = self else { return }

Using

UIView.animate(withDuration: 0.25) {
	[weak self] in
	guard let `self` = self else { return }
	self.isHidden = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment