// // IssueLabelEditCell.swift // Freetime // // Created by Ryan Nystrom on 8/6/17. // Copyright © 2017 Ryan Nystrom. All rights reserved. // import UIKit import SnapKit import IGListKit final class IssueLabelEditCell: SelectableCell, ListBindable { let label = UILabel() override init(frame: CGRect) { super.init(frame: frame) label.text = NSLocalizedString("Edit Labels", comment: "") label.font = Styles.Text.secondary.preferredFont label.textColor = Styles.Colors.Blue.medium.color contentView.addSubview(label) label.snp.makeConstraints { make in make.left.equalTo(Styles.Sizes.gutter) make.centerY.equalToSuperview() } } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } // MARK: ListBindable func bindViewModel(_ viewModel: Any) {} }