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
Post a Comment