gpt4 book ai didi

ios - UIView transitionWithView 丢弃层设置

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:54 25 4
gpt4 key购买 nike

我查看 Didload 我有如下设置:

    [[self layer] setCornerRadius:30.0f];
NSString *imgFilepath = [[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"jpeg"];
backImg = [[UIImage alloc] initWithContentsOfFile:imgFilepath];

然后在按下按钮时,我正在执行 transitionWithView:viewPressed 操作,例如:

    [UIView transitionWithView:viewPressed duration:0.5
options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^{
[self setImage:img];
[self setFrame:useFrame]; // Just a bigger frame
[((UIView*)self) bringSubviewToFront:viewPressed];
}
completion:NULL];

我有漂亮的圆角,但当过渡开始时,它会在动画之前变成方角。

希望我解释清楚了吗?

谢谢

最佳答案

第二个代码块中的自引用是什么?

我假设 self 是一个自定义 View ,setImage 设置它的层的内容,然后使用

[[self layer] setMasksToBounds:YES];

setCornerRadius 之后它对我有用!

关于ios - UIView transitionWithView 丢弃层设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11604215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com