0
셀 속성을 만들고 액세스하려고합니다. 내가 게으름 만들기 때문에 tableView 초기화 중에 액세스 할 수 없습니다.tableView 행에 액세스하는 게으른 속성을 만들 수없는 이유는 무엇입니까?
나는 내 tableViewController 서브 클래스의 속성으로 배치,하지만 난 다음 오류 받고 있어요 :
Ambiguous reference to member 'tableView(_:numberOfRowsInSection:)'
내 코드 :
lazy var messageCell : CustomCell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 1, inSection: 1)) as! CustomCell
그러나 나는이 정확한 라인없이 게시하는 경우 함수 안에있는 lazy
은 모두 잘 작동합니다 ...