我不认为public init中的问号?(编码器aDecoder:NSCoder)意味着选项.此外,当我覆盖它时,我发现我根本不需要写问号.
那究竟是什么意思呢?
—更新 –
下面的评论帮助我弄明白了,它被称为“可用的初始化器”,另一个使概念更容易理解的例子是UIFont的connivence init,因为UIFont可能不存在.
public /*not inherited*/ init?(name fontName: String,size fontSize: CGFloat)
解决方法
它被称为可用的初始化程序.在“Swift编程语言”一书中,它将其描述为
“It is sometimes useful to define a class,structure,or enumeration for which initialization can fail. This failure might be triggered by invalid initialization parameter values,the absence of a required external resource,or some other condition that prevents initialization from succeeding.”
https://swift.org/documentation/TheSwiftProgrammingLanguage(Swift2.2).epub