iphone - Nested animation block caused "Segmentation fault" -


I try to show three images, one after the other, with the following code:

 < Code> Image_1.alpha = 0.0; Image_2.alpha = 0.0; Image_3.alpha = 0.0; [UIView Animativity Dereation: 0.25 Animation: ^ {image_1.alpha = 1.0; } Closing: ^ (BOOL Finish) {[UIView Animation with Duration: 0.25 Animation: ^ {image_2.alpha = 1.0; } Closing: ^ (BOOL Finish) {[UIView Animation with Duration: 0.25 Animation: ^ {image_3.alpha = 1.0; } Closing: ^ (BOOL Finish) {; }]; }]; }];   

returns: Internal Compiler Error: Segmentation Error

There are two animation blocks in the nesting, there is no error, nested animation block Not allowed or comes with some limit?


Comments