objective c - Block-based animation with animated images -


i have been trying create simple "block-based animation". using array of images "images" here. used method:

 [uiview animatewithduration:3.0 delay:0.0f options:uiviewanimationoptionallowuserinteraction | uiviewanimationoptioncurvelinear animations:^{ imageview.animationimages = images; } completion:nil]; 

however no change happens when alter values of parameters animatewithduration: , delay: want slow down animation no change happens when change these values 20-30. please help.

to change images in uiimageview, don't have put inside animation block. have use uiimageview's animationimages , animationduration properties, - startanimating , - stopanimating methods of uiimageview.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -