The documentation for UIView lists two initializers:
init(frame: CGRect)
init?(coder aDecoder: NSCoder)
According to my understanding, the compiler should force me to use one of those two. So, what gives? UIView is "special"?
The documentation for UIView lists two initializers:
init(frame: CGRect)
init?(coder aDecoder: NSCoder)
According to my understanding, the compiler should force me to use one of those two. So, what gives? UIView is "special"?