I have below code.I am trying to declare a 'name' constant as optional but it does not allow it gives error as
stored property 'name' without initial value prevents synthesized initializers
class VideoMode {
let resolution = Resolution()
var interlaced = false
var frameRate:Float = 0.0
let name: String?
}
EDIT:Why i am getting such error as in case of structure it will not give any error