Skip to content

Instantly share code, notes, and snippets.

@srdanrasic
Last active December 9, 2017 20:57
Show Gist options
  • Save srdanrasic/200ab548a211897822a98fa4a8dfb5d7 to your computer and use it in GitHub Desktop.
Save srdanrasic/200ab548a211897822a98fa4a8dfb5d7 to your computer and use it in GitHub Desktop.
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