美文网首页
UITableViewCell 动画

UITableViewCell 动画

作者: JaiUnChat | 来源:发表于2017-06-29 18:01 被阅读14次

在这个方法中实现

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

移动

let transform = CATransform3DIdentity
let transformation = CATransform3DTranslate(transform, 0, -40, 0)       
cell.layer.transform = transformation
cell.layer.opacity = 0.0 // 透明度渐变
cell.transform = CGAffineTransform(translationX: 0, y: 40)
UIView.animate(withDuration: 0.8) { 
    cell.layer.transform = CATransform3DIdentity
    cell.layer.opacity = 1
}

相关文章

网友评论

      本文标题:UITableViewCell 动画

      本文链接:https://www.haomeiwen.com/subject/mmhvcxtx.html