Created
April 15, 2017 20:43
-
-
Save cojoj/abddf547678bb85ba223d253a1638e84 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
func configureBasicStuff() { | |
doSomeMagic() | |
networkingManager = SuperDuperNetworking.sharedInstance() | |
for constraint in textConstraints { | |
constraints.append(LayoutConstraint(constraint)) | |
} | |
label.text = "This is wrong!".uppercaseString | |
label.font = UIFont(name: "CirceBold", size: 11) | |
label.textColor = UIColor.blueColor() | |
label.textAlignment = .Center | |
label.numberOfLines = 1 | |
label.constraints = constraints | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment