You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 27, 2021. It is now read-only.
Protect from dynamism section is incorrect. Adding @objc dynamic is not needed for things such as scroll view delegates.
IBOutlets should always be forced unwrapped, like Xcode does by default, not optionals. Optional outlets is a debugging mess.
self should NOT be used unless required, as I mentioned in my other open issue. Stating self should be used at all times is categorically bad swift advice. This is no longer a matter of preference.
weak self should be handled with strongSelf (until swift 4.2) and not self. Self with single quotations is not supported.
Thanks again for this guide and the effort put in.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This awesome guide needs some updates
self
. Self with single quotations is not supported.Thanks again for this guide and the effort put in.
The text was updated successfully, but these errors were encountered: