gpt4 book ai didi

ios - 尝试制作简单的 UIImageVIew 动画

转载 作者:行者123 更新时间:2023-11-29 01:57:06 24 4
gpt4 key购买 nike

我正在尝试制作一个简单的 UIImageView 动画。我有 11 张 .png 类型的图片。动画只是兔子眨眼。我的数组有问题:

UIImageView *animationView = [[UIImageView alloc] initWithFrame:CGRectMake(self.view.bounds.size.width/2-123/2, self.view.bounds.size.height/2-278/2, 123, 278)];

NSArray *imageNames = [NSArray arrayWithObjects:@"rabbit-1.png",@"rabbit-2.png",@"rabbit-3.png",@"rabbit-4.png",@"rabbit-5.png",@"rabbit-6.png",@"rabbit-7.png",@"rabbit-8.png",@"rabbit-9.png",@"rabbit-10.png",@"rabbit-11.png", nil];


NSMutableArray *images = [[NSMutableArray alloc] init];

for(int x =0; x==[imageNames count]; x++){
UIImage *image = [UIImage imageNamed: [imageNames objectAtIndex:x]];
[images addObject:image];
}

NSLog(@"image name array length is : %d",[images count]);



animationView.animationImages=images;
animationView.animationDuration=10;
[self.view addSubview:animationView];
[animationView startAnimating];

屏幕上没有显示任何内容,因为图像数组为空。不知道这是为什么。我在其中进行了初始化和分配,但是当我检查长度时,它返回为零。知道这里发生了什么吗?任何指针将不胜感激。谢谢

最佳答案

x == [imageNames count] 始终为 false,因此不会执行 for 循环。

换行

for(int x =0; x==[imageNames count]; x++)

for(int x = 0; x < [imageNames count]; x++)

关于ios - 尝试制作简单的 UIImageVIew 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30728398/

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