UITableviewCell外观动画像卡片快速翻转?

时间:2018-03-28 09:40:32

标签: swift xcode uitableview uiviewanimation

我已经完成了一些UITableviewCell外观动画,例如左/右/上/下

但是现在我正在进行的项目中有一个新要求,就是像卡片翻转一样显示UITableViewCell。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

我曾在我的一个项目中使用如下。希望这也会对你有所帮助。

翻转单元格

UIView.transition(with: contentView, duration: 0.6, options: .transitionFlipFromRight, animations: {() -> Void in
        self.contentView.insertSubview(flipView, aboveSubview: normalView)
    }, completion: {(_ finished: Bool) -> Void in
})