最佳答案
我有以下课程:
class ReportView: NSView {
var categoriesPerPage = [[Int]]()
var numPages: Int = { return categoriesPerPage.count }
}
编译失败时会出现以下消息:
实例成员“ Category oriesPerPage”不能用于类型 “ ReportView”
这是什么意思?