0
我想創建一個單元屬性並訪問它。我創建它懶惰,因爲它在tableView的初始化過程中無法訪問。爲什麼我無法創建訪問tableView行的惰性屬性?
我把它當作我的tableViewController子類的屬性,但我發現了以下錯誤:
Ambiguous reference to member 'tableView(_:numberOfRowsInSection:)'
我的代碼:
lazy var messageCell : CustomCell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 1, inSection: 1)) as! CustomCell
然而,如果我發佈這個確切的行不lazy
裏面的函數一切都正常......