0
我在調用以下函數來更新tableView。但是,我發現heightForHeaderInSection被調用兩次,表中的每個節都有。所以如果我有5個部分,函數會被調用10次。這是正常的嗎?heightForHeaderInSection何時被調用
tableView.beginUpdates()
let sections = NSIndexSet(index:posts.count - 1)
tableView.insertSections(sections, withRowAnimation: .None)
tableView.endUpdates()
是的,這是正常的! –
爲什麼需要兩次調用 – user172902
IDK,有人可能會解釋,讓我們等待。但其正常。 –