iphone - Cocoa Touch animation delaying command -


what command of delaying action fade in image?

sounds want

+ (void)setanimationdelay:(nstimeinterval)delay 

use (non-block based animations):

[uiview beginanimations:nil context:nil]; [uiview setanimationdelay:1.5]; myimage.alpha = 1.0; [uiview commitanimations]; 

Comments

Popular posts from this blog

c# - IMAP GMAIL getting folder list problem -

CUDA shared memory -