We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we start using xibs we will have to name the IBAction methods and the corresponding delegate methods to the ViewController
@IBAction func didPressLogin(_ sender: Any)
In the spirit of this article: http://khanlou.com/2016/09/swifty-delegates/ we agreed on naming the delegates like this:
func didPressLogin(on authView: UIView)
The text was updated successfully, but these errors were encountered:
@marijnschilling With the pending revisions to the code standards we're moving away from prescriptive naming. Would you mind if I closed this out?
Sorry, something went wrong.
No branches or pull requests
When we start using xibs we will have to name the IBAction methods and the corresponding delegate methods to the ViewController
@IBAction func didPressLogin(_ sender: Any)
In the spirit of this article: http://khanlou.com/2016/09/swifty-delegates/ we agreed on naming the delegates like this:
func didPressLogin(on authView: UIView)
The text was updated successfully, but these errors were encountered: