在核对清单的声明中,它显示错误。 这是我的代码:
required init(coder aDecoder: NSCoder)
{
lists = [Checklist]()
super.init(coder: aDecoder)
var name: String
var list = Checklist(name = " Birthdays")
lists.append(list)
list = Checklist(name = "Groceries")
lists.append(list)
list = Checklist(name = "Cool Apps")
lists.append(list)
list = Checklist(name = "To Do")
lists.append(list)
}
答案 0 :(得分:0)
假设另一个init
方法如下:
required init(name theName: String)
{
// theName is the parameter and String is the type
}
你应该这样做:
list = Checklist("To Do")