How to flip two views in tableviewcell

91 Views Asked by At

I want to flip front view with back view and again flip back view to front view in tableviewcell position and size of both views are same in tableViewcell. I want to perform this animation after 2 seconds delay.

1

There are 1 best solutions below

2
On

try this code

let main = UIView() // cell view name 
let transition = CATransition()
transition.duration = 0.5
transition.type = "flip"
transition.subtype = kCATransitionFromLeft
main.layer.add(transition, forKey: kCATransition)