gpt4 book ai didi

iphone - UIButton 用动画添加颜色

转载 作者:行者123 更新时间:2023-12-03 18:48:36 25 4
gpt4 key购买 nike

我想要做的是,当用户单击按钮时,按钮应该从下到上用动画填充颜色。

我尝试了这个,它添加了颜色,但没有添加动画效果。

float originalY = btn.frame.origin.y;
float originalH = btn.bounds.size.height;

[UIView animateWithDuration:3.0f
delay:1.0f
options:UIViewAnimationOptionTransitionFlipFromBottom
animations:^{

btn.frame = CGRectMake(btn.frame.origin.x, (originalY + originalH), btn.bounds.size.width, 0);
[btn setBackgroundImage:[UIImage imageNamed:@"Screen Shot 2012-11-07 at 4.22.30 PM.png"] forState:UIControlStateNormal];
[btn setTitleColor:[[UIColor alloc]initWithRed:38.0/255.0 green:38.0/255.0 blue:38.0/255.0 alpha:1.0] forState:UIControlStateNormal];
} completion:^(BOOL finished) {
}];

最佳答案

最好的解决方案是子类化 UIButton 并添加一个将背景图像的 alpha 值从 0 更改为 1 的方法。

或者您可以重写drawRect方法并用颜色填充背景。

关于iphone - UIButton 用动画添加颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13270721/

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