0
func tableView(tableView: UITableView!, heightForRowAtIndexPath indexPath: NSIndexPath!) -> CGFloat {
let cellPrototype: NDCustomTableViewCell = NDCustomTableViewCell()
return cellPrototype.frame.size.height;
}
let cellPrototype是一個常量,這隻會執行一個嗎?不是函數heightForRow,而是細胞原型的初始化。這是Swift中原型設計模式的正確使用嗎?
哦,我們沒有想到的事情!謝謝 :) – nmdias 2014-09-03 20:08:37