Noobish1/WeatherRules

View on GitHub
App/CoreUI/WhatToWearCoreUI/Views/Buttons/CodeBackedButton.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation

open class CodeBackedButton: UIButton {
    // MARK: init
    @available(*, unavailable)
    public required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    public override init(frame: CGRect) {
        super.init(frame: frame)
    }
}