Created
April 28, 2017 11:38
-
-
Save AndreyPanov/9af1262f1f8504cc3c26e33f084bc723 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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