class TransactionCellView: UIView { let iconImageView = UIImageView() let nameLabel = UILabel() let amountLabel = UILabel() init(viewModel: TransactionCellViewModel) { // ... omitted configuration of the view style ... // ... omitted AutoLayout code ... iconImageView.image = UIImage(named: viewModel.icon) nameLabel.text = viewModel.name amountLabel.text = viewModel.amountFormatted } }