Skip to content

Instantly share code, notes, and snippets.

@AndreyPanov
Created April 28, 2017 11:38
Show Gist options
  • Save AndreyPanov/9af1262f1f8504cc3c26e33f084bc723 to your computer and use it in GitHub Desktop.
Save AndreyPanov/9af1262f1f8504cc3c26e33f084bc723 to your computer and use it in GitHub Desktop.
var headerLabel: (UILabel) -> () = { control in
control.font = .systemFont(ofSize: 20)
control.textColor = .red
}
var bodyLabel: (UILabel) -> () = { control in
control.font = .systemFont(ofSize: 15)
control.textColor = .darkGray
}
var loginTextField: (UITextField) -> () = { control in
control.font = .systemFont(ofSize: 15)
control.textColor = .darkGray
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment