Pattern: Use of @IBInspectable
in extension
Issue: -
Extensions shouldn't add @IBInspectable
properties.
Examples of correct code:
class Foo {
@IBInspectable private var x: Int
}
Examples of incorrect code:
extension Foo {
@IBInspectable private var x: Int
}