Can't add subview to UiButton
I try to create a custom button with custom subview, but untortunately button appears without this custom subview. public class ButtonWithSubview: UIButton { private var customView = UIView() override public init(frame: CGRect) { super.init(frame: .zero) backgroundColor = UIColor.Player.roundedButtonBackground.withAlphaComponent(0.75) prepareCustomView() } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } private func prepareCustomView() { customView.backgroundColor… Read More Can't add subview to UiButton