iphone - Objective C - Animation Blocks, multiparameters -


i have question... how programmatically reached animation blocks?

[uiview beginanimations:@"repositionanimation" context:nil];  // -----------------------------------------------------------------------------     [view setframe:viewrect];  [view setalpha:0];  ...  ...  // -----------------------------------------------------------------------------  [uiview commitanimations]; 

how messages stored , processed on commitanimations ???

i guess begin function invokes kind of holder messages, storing messages somehow , process them in loop ?

is there way work messages kind in argument lists???

you using animation proxy when call [uiview beginanimations:context:]. if want manage animations explicitly, use core animation. can monitor progress of view's layer periodically (using timer) checking layer's presentationlayer.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -