我在创建展开单元格时遇到了问题。我使用的是UIStackView。问题是,当单元格最小化时,较低的视图会越过顶部,结果是一个丑陋的动画。
这是我的方法
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("tap")
self.tableView.beginUpdates()
let cell = tableView.cellForRow(at: indexPath) as! TableViewCell
cell.animate(duration: 0, c: {
cell.stufView.layoutIfNeeded()
})
self.tableView.endUpdates()
}
和细胞方法动画
func animate(duration:Double, c: @escaping () -> Void) {
UIView.animateKeyframes(withDuration: duration, delay: 0, options: .calculationModePaced, animations: {
UIView.addKeyframe(withRelativeStartTime: 0, relativeDuration: duration, animations: {
self.stufView.isHidden = !self.stufView.isHidden
if self.stufView.alpha == 1 {
self.stufView.alpha = 0.5
} else {
self.stufView.alpha = 1
}
})
}, completion: { (finished: Bool) in
print("animation complete")
c()
})
}
我的故事板