gpt4 book ai didi

ios - UIView transitionWithView : animation behaviour with background color

转载 作者:可可西里 更新时间:2023-11-01 17:05:44 25 4
gpt4 key购买 nike

我已经建立了一个简单的项目来试验 UIView transitionWithView: 动画片段并遇到了相当奇怪的行为。

enter image description here

动画只对标签的文本起作用(在 View 旋转一半时改变它),但是颜色变化发生在动画结束时,嗯。有没有办法使用这种动画在动画中途更改背景颜色(图像?)?我可以用 Core Animation 自己构建类似的东西,但我不想重新发明轮子。我觉得我只是没有正确使用这个方法

整个示例代码:

#import "ViewController.h"

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIView *containerView;
@property (weak, nonatomic) IBOutlet UIView *innerView;
@property (weak, nonatomic) IBOutlet UILabel *label;

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];

self.innerView.layer.cornerRadius = 25.0;
// Do any additional setup after loading the view, typically from a nib.
}

- (UIColor *)randomColor {

CGFloat hue = ( arc4random() % 256 / 256.0 );
CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5;
CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5;
UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];

return color;
}


- (IBAction)flipAction:(id)sender {

static int i = 0;
i++;

[UIView transitionWithView:self.containerView
duration:0.5
options:UIViewAnimationOptionTransitionFlipFromTop
animations:^{

self.innerView.backgroundColor = [self randomColor];
self.label.text = [NSString stringWithFormat:@"Flip - %d", i];

} completion:nil];

}

@end

旁注。有趣的是,我发现当动画选项设置为 UIViewAnimationOptionTransitionCrossDissolve 时,它会做同样的事情,但是!如果您将其设置为 0,它将在整个持续时间内为颜色属性设置动画。很确定在那种情况下我们会看到隐式层动画

enter image description here

最佳答案

将颜色变化线包裹在 performWithoutAnimation block 中。

为什么我猜这行得通是因为转换在转换 block 运行之前和之后捕获了一个屏幕截图。当您在不使用 performWithoutAnimation 的情况下更改颜色时,之后的屏幕截图将不会立即更改颜色(因为它具有动画效果)。使用 performWithoutAnimation,后屏幕截图具有最终颜色,可以在后屏幕截图中正确捕获。

关于ios - UIView transitionWithView : animation behaviour with background color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31210292/

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