gpt4 book ai didi

ios - UIImageView 闪烁动画

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

我正在尝试让 UIImageViewviewDidLoad 上闪烁。我不确定最好的方法是什么。我试过使用 .hidden=YES.hidden=NO 的循环,但这似乎是一种不好的方法。我需要一些适当的建议。

最佳答案

试试这个:

-(void)blink:(UIView*)view count:(int) count
{
if(count == 0)
{
return;
}

[UIView animateWithDuration:0.2 animations:^{

view.alpha = 0.0;

} completion:^(BOOL finished){

[UIView animateWithDuration:0.2 animations:^{

view.alpha = 1.0;

} completion:^(BOOL finished){

[self blink:view count:count-1];

}];


}];
}

或者如果你想让它永远闪烁试试这个:

-(void)blinkForever:(UIView*)view
{
[UIView animateWithDuration:0.2 delay:0.0 options:UIViewAnimationOptionAutoreverse|UIViewAnimationOptionRepeat animations:^{

view.alpha = 0.0;

} completion:nil];
}

关于ios - UIImageView 闪烁动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32026869/

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