Esqarrouth / EZSwiftExtensions

:smirk: How Swift standard types and classes were supposed to work.
MIT License
3k stars 381 forks source link

Declarations in extensions cannot override yet #479

Closed vshalvaghasiya closed 6 years ago

vshalvaghasiya commented 6 years ago
public convenience init(x: CGFloat, y: CGFloat, w: CGFloat, h: CGFloat) {
    self.init(frame: CGRect(x: x, y: y, width: w, height: h))
}

screen shot 2018-06-12 at 1 50 56 pm