Unable to disable animation of CALayer>>removeFrom

2019-07-18 14:29发布

I wish to remove a CALayer from its superlayer without animating. What happens here is the layer animates to a position, works great, when however the animation stopped, this code is executed, which returns the layer to its start position, and fades out; presumably then gets removed from the superlayer. How may it be stopped from animating -removeFromSuperlayer ? The code listed here has the same behavior for all variations of the included comments being uncommented and not uncommented, Transaction or no transaction. What am I missing?

- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
{
    //[self setHidden: YES];

    //[CATransaction flush];
    [CATransaction begin];
    [CATransaction setValue:(id)kCFBooleanTrue
                     forKey:kCATransactionDisableActions];
    //[CATransaction setDisableActions: YES];
    //[CATransaction setAnimationDuration: 0];
    [self removeFromSuperlayer];
    [CATransaction commit];
}

I have been searching around, and this code is not any different from what I have found.

1条回答
小情绪 Triste *
2楼-- · 2019-07-18 14:54

You can disable the implicit animation by setting the actions dictionary on the superlayer to return null for animations involving sublayers (similar to my answer here):

NSMutableDictionary *newActions = [[NSMutableDictionary alloc] initWithObjectsAndKeys:[NSNull null], @"sublayers", nil];
superlayer.actions = newActions;
[newActions release];

You may also need to override the layer's (not the superlayer's) onOrderOut action to prevent this. I show how to do that in the linked answer.

查看更多
登录 后发表回答