gpt4 book ai didi

IOS UIButton 与动画 gif 图像

转载 作者:可可西里 更新时间:2023-11-01 06:19:19 28 4
gpt4 key购买 nike

如何添加动画 gif 文件作为 UIButton 的默认图像。我添加了 gif 文件作为按钮图像。但它不是动画。

谢谢。

最佳答案

动画 GIF 不会在 iphone 中设置动画。您应该添加一个 UIImageView 作为 UIButton 的 subview ,从 GIF 中提取所有图像并使用 UIImageView Animation 设置动画

UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"image1.gif"],
[UIImage imageNamed:@"image2.gif"],
[UIImage imageNamed:@"image3.gif"],
[UIImage imageNamed:@"image4.gif"], nil];
animatedImageView.animationDuration = 1.0f;
animatedImageView.animationRepeatCount = 0;
[animatedImageView startAnimating];
[yourButton addSubview: animatedImageView];

关于IOS UIButton 与动画 gif 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10894972/

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