How do I animate changing the border colour of a UITextField?

浪尽此生 提交于 2019-12-12 10:07:45

问题


I infer from this question that the following should animate the colour change of my UITextField's border:

        [UIView animateWithDuration:5.0f animations:^() {
            myUITextField.layer.borderColor = [UIColor greenColor].CGColor;
        }];

But it doesn't, the border changes colour instantly. Is it obvious what I'm doing wrong?

Update: Ok, so trying the following implicit animation:

        [CATransaction begin];
        [CATransaction setValue:[NSNumber numberWithFloat:5.0f] forKey:kCATransactionAnimationDuration];
            myUITextField.layer.borderColor = [UIColor greenColor].CGColor;
        [CATransaction commit];

And that doesn't animate either, same effect: it changes colour instantly (as an aside, where's the default for kCATransactionAnimationDuration for layer.borderColor documented?)


回答1:


I believe that CALayer properties are not animatable in a UIView animation block. You would need to set up a CABasicAnimation and add that animation to the layer instead.



来源:https://stackoverflow.com/questions/8311285/how-do-i-animate-changing-the-border-colour-of-a-uitextfield

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!