5

在调用之前,我animateWithDuration:animations:completion:用来移动我的用户界面的几个元素(大约 4 个元素) 。removeFromSuperview:

我的问题是,我怎么知道所有这些动画在调用之前已经完成removeFromSuperview:

4

3 回答 3

9

好的,回答我自己的问题。

我最终做了这样的事情:

    // Create dispatch queue & group
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_group_t group = dispatch_group_create();

    // Two group enters
    dispatch_group_enter(group);
    dispatch_group_enter(group);

    // (notice the group parameter in dispatch_group_leave)
    [UIView animateWithDuration:0.3 animations:^{
        self.pickerView.frame = CGRectMake( self.pickerView.frame.origin.x
                                           , self.view.bounds.size.height + self.pickerView.frame.size.height/2
                                           , self.pickerView.frame.size.width
                                           , self.pickerView.frame.size.height);
    } completion:^(BOOL finished){
        dispatch_group_leave(group);
    }]; 


    [UIView animateWithDuration:0.3 animations:^{
        self.navigationBar.frame = CGRectMake( self.navigationBar.frame.origin.x
                                              , -self.navigationBar.frame.size.height
                                              , self.navigationBar.frame.size.width
                                              , self.navigationBar.frame.size.height);
    } completion:^(BOOL finished){
        dispatch_group_leave(group);
    }];

    // Finishing callback
    dispatch_group_notify(group, queue, ^{
        [self.view removeFromSuperview];
    });

    // Release the group
    dispatch_release(group);

我希望这可以作为其他人的榜样。

于 2012-08-02T15:14:26.387 回答
1

您还可以使用 CATransaction。它将捕获任何嵌入的动画:

 [CATransaction begin];
 [CATransaction setCompletionBlock:^{ // all animations finished here }];
 [UIView animateWithDuration...
 [UIView animateWithDuration...
 ...
 [CATransaction commit];

这将使您不必自己跟踪动画。

于 2013-07-19T01:23:26.593 回答
0

创建一个调度队列,根据您正在执行的动画数量暂停它。将一个块添加到从 superview 中删除的队列中。在每个动画的完成块中恢复挂起的队列。当最后一个完成时,排队的块将运行。

于 2012-08-01T22:42:40.353 回答