我想在加載單元UITableView
時添加動畫(從頂部到底部)但是不知道這個,請別人幫助我。如何在tableView中添加動畫Swift
下面添加了一個簡單的表視圖委託方法與數組(arrHeader)。
在此先感謝
let arrHeader = ["City1", "City2", "City3"]
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return arrHeader.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell")
cell?.textLabel?.text = arrSubHeader[indexPath.row]
return cell!
}
你想,當它顯示給動畫添加到每個單元格?或整個tableView的動畫? –
我想添加到整個表 –
爲了確保我理解你想要實現什麼,動畫將適用於它自己的tableview,而不是在每個單元格上,對不對? –