如何在 imageview 中添加图像数组

发布于 2024-12-14 18:54:55 字数 552 浏览 0 评论 0原文

-(IBAction)btnNextTapped
{

    self.currentPhotoIndex++;
    if([allPhotosArray  count]>0) {
        if(self.currentPhotoIndex>=[allPhotosArray  count]) {
            self.currentPhotoIndex=0;
        }  

        NSLog(@"====== allphotos in this county :%d",[allPhotosArray  count]);


        mugImage.image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString: [allPhotosDict objectForKey:@"Photo"]]]];

    }
}

当我单击下一个按钮时,将调用此方法,但是当我单击下一个按钮时,图像应该更改,但这里我没有获取下一个图像, 请帮助我

预先感谢您

-(IBAction)btnNextTapped
{

    self.currentPhotoIndex++;
    if([allPhotosArray  count]>0) {
        if(self.currentPhotoIndex>=[allPhotosArray  count]) {
            self.currentPhotoIndex=0;
        }  

        NSLog(@"====== allphotos in this county :%d",[allPhotosArray  count]);


        mugImage.image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString: [allPhotosDict objectForKey:@"Photo"]]]];

    }
}

when i clicked next button , this method would be called, but when ever iam clickin on the next button the image should be change, but here iam not getting next image ,
Plese help me

Thank you in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清风不识月 2024-12-21 18:54:56

我认为你必须编写以下代码才能更改图像。

mugImage.image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString: [[allPhotosArray objectAtIndex:self.currentPhotoIndex] valueForKey:@"Photo"]]]];

I think you have to write following code in order to change images.

mugImage.image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString: [[allPhotosArray objectAtIndex:self.currentPhotoIndex] valueForKey:@"Photo"]]]];
长发绾君心 2024-12-21 18:54:56

您将所有图像放入一个数组中。因此,请设置一个变量来计算您的点击次数。每当您单击按钮时,只需将 var 的计数增加一并将该数组索引图像设置到您的 imageview 中......

You have all images into an array. So set one var that counts your click. Whenever you click on your button, just increase count of var by one and set that array index image into your imageview ....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文