The following code shows build error in Xcode 6.3 Beta 3. The code works in Xcode 6.2 and Xcode 6.3 Beta 2.
class MyView: UIView { overrid
An additional way of resolving is to provide a default argument for the frame parameter of the UIView
override init(frame: CGRect = CGRectZero) { super.init(frame: frame) // custom code }