如何在tableView Swift上添加动画

时间:2016-11-24 19:40:10

标签: ios swift animation

我想在UITableView加载单元格时添加动画(从上到下)但不知道这个,请有人帮助我。

下面添加了一个简单的表视图委托方法与数组(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!
}

1 个答案:

答案 0 :(得分:0)

将动画代码放入此UItableView委托方法中:

override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
    //TODO: animation code

}

每次在iPhone / iPad屏幕上显示新的或旧的单元格时,都会调用此委托方法。

因此,如果您在此块中尝试使用单元格,它将反映在它们上面。

optional func tableView(_ tableView: UITableView, 
       didEndDisplaying cell: UITableViewCell, 
               forRowAt indexPath: IndexPath) { }

在显示单元格后调用此方法。

以下是示例的github链接:

访问:https://github.com/subhajitregor/TableCellCardDropAnimationExample