0
我有這樣的代碼,例如:從完成期間上海華刪除刪除它前面
[UIView animateWithDuration:0.3
delay:0
options:UIViewAnimationOptionCurveEaseOut
animations:^{
[self animateMenuOut:menu];
}completion:^(BOOL finished) {
[menu removeFromSuperview];
}];
而是生動活潑的,但是,它只是從視線中消失。刪除[menu removeFromSuperview];
行使它工作得很好。
完成塊中的代碼在動畫完成後執行(或者被取消,在這種情況下完成的參數將爲「否」)。 – titaniumdecoy 2012-03-02 00:02:25
你確定嗎?通常動畫代碼可以避免阻塞。 – DarkMalloc 2012-03-02 00:03:53
那麼我該如何解決這個問題呢? – Andrew 2012-03-02 00:06:29