This question already has an answer here:
xcode 6 beta 5
Error:
Class 'ClassName' does not implement its superclass's required members
on
class ClassName:UIView
also showing an error
on
init(frame: CGRect) {
super.init(frame: frame)
// Initialization code
self.backgroundColor = UIColor.clearColor()
}
Overriding declaration required an 'ovveride' keyword
I placed override before init, ovveride error was remove but superclass error was not
thanks in advance
in Xcode6 beta5 the
-init(coder:)
has became a required method to be overridden: