i’m developping an application for kids (memory game): turning two same tiles(images) and you can remove them. the problem is how to turn the uiimages with animation and only the uiimages without turning the view that contain them..
do i have to put every uiimage in a small view?
any ideas?
PS :i’m not using OpenGL
i’m developping an application for kids (memory game): turning two same tiles(images) and you
Share
Sorry, misread the first time. Use UIImageViews for each tile and then animate as below.
a UIView is just a view, so you can animate it the way you animate any view. Its fairly straightforward.
Alternatively, you can use CATransition which gives you a little more control and different transitions.