Last active
December 9, 2017 20:57
-
-
Save srdanrasic/200ab548a211897822a98fa4a8dfb5d7 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
public class ProductView: UIView { | |
public let titleLabel: UILabel = { | |
let label = UILabel() | |
label.font = .systemFont(ofSize: 12) | |
label.textColor = .red | |
label.numberOfLines = 2 | |
return label | |
}() | |
public let imageView: UIImageView = { | |
let imageView = UIImageView() | |
imageView.contentMode = .center | |
imageView.backgroundColor = .darkGray | |
return imageView | |
}() | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment