我有以下动画块:
[UIView animateWithDuration:2
animations:^{
[childViewController_.view setAlpha:0];
}
completion:^(BOOL finished) {
[childViewController_.view removeFromSuperview];
}];
如上所述执行时,立即调用完成块。但是,如果我没有完成块,则动画将按预期执行。
我在这里做错了什么?
更新
完成块中
的finished
标志是NO
.