Я пытаюсь показать три изображения, одно за одним, со следующим кодом:
image_1.alpha = 0.0;
image_2.alpha = 0.0;
image_3.alpha = 0.0;
[UIView animateWithDuration:0.25
animations:^{
image_1.alpha = 1.0;
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.25
animations:^{
image_2.alpha = 1.0;
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.25
animations:^{
image_3.alpha = 1.0;
} completion:^(BOOL finished) {
;
}];
}];
}];
дает: internal compiler error: Segmentation fault
Нет ошибки, если вложение содержит два блока анимации,Вложенный блок анимации запрещен или имеет некоторые ограничения?