gpt4 book ai didi

ios - 如何在iOS中的动画图像上放置按钮?

转载 作者:行者123 更新时间:2023-12-01 16:45:13 26 4
gpt4 key购买 nike

在我的应用程序中,我有一个图像数组,该图像每秒都在动画化。
我使用了以下代码,

 animateArrayImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"gallery-img-1.png"],
[UIImage imageNamed:@"gallery-img-2.png"],nil];
animateImageView.animationImages = animateArrayImages;
animateImageView.animationDuration = 1.0f;
animateImageView.animationRepeatCount = 0;
[animateImageView startAnimating];
UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setFrame:CGRectMake(20, 20, 20, 20)];
[self.view addSubview:button];

但是我得到这样的输出

该按钮将显示在图像的背景中。
但是我想在图像之前显示它

最佳答案

如果要将按钮放在图像顶部,可以在addSubview:之后调用以下方法

[self.view bringSubviewToFront:button];

关于ios - 如何在iOS中的动画图像上放置按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20563174/

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