Skip to content

Instantly share code, notes, and snippets.

@yunustek
Created October 7, 2018 16:59
Show Gist options
  • Save yunustek/f8457b0cfb6c49df0c1b450e1c198a8c to your computer and use it in GitHub Desktop.
Save yunustek/f8457b0cfb6c49df0c1b450e1c198a8c to your computer and use it in GitHub Desktop.
View Controller Canlılığını Kontrol Etme
DispatchQueue.main.async { [weak self] in
guard let self = self else {
return
}
// Do stuff with self, knowing it is held strongly after the guard statement
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment