如何在内存和CPU负载较少的情况下在iPad上滑动图像变化?

发布于 2024-11-07 11:50:20 字数 97 浏览 0 评论 0原文

我的应用程序有大约 100 张图片。每张图片大约 150 KB。我只想滑动每张图片以转到下一张或返回上一张图片。

使用更少内存和 CPU 负载的最佳方法是什么???

My app has around 100 Picture. Each picture is around 150 KB.And I just want to swipe each picture to go next or back to previous pic.

What is the best way that use less memory and CPU load ???

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

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

发布评论

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

评论(1

回忆追雨的时光 2024-11-14 11:50:20

假设您在应用程序中拥有所有图像,所有图像名称都存储在 NSMutableArray 中。

将一个 UIImageView 连接为 XIB 文件上的 IBOutlet。

NSMutableArray *imgNameArr; //Array to store image names
NSInteger currShowing; //Integer value to keep track of image currently being displayed.

//Function to change image when swipe right
-(void)swipeRight
{
    if(currShowing<[imgNameArr count])
    {
        currShowing+=1;
        self.yourDisplayImageView.image = [UIImage imageNamed:[imgNameArr objectAtIndex:currShowing]];
    }
}

//Function to change image when swipe left
-(void)swipeLeft
{
    if(currShowing>0)
    {
        currShowing-=1;
        self.yourDisplayImageView.image = [UIImage imageNamed:[imgNameArr objectAtIndex:currShowing]];
    }
}

如有任何疑问,请发表评论。

希望有帮助。

Assuming you have all images within application, all image names stored in NSMutableArray.

Take one UIImageView wired up as IBOutlet on your XIB file.

NSMutableArray *imgNameArr; //Array to store image names
NSInteger currShowing; //Integer value to keep track of image currently being displayed.

//Function to change image when swipe right
-(void)swipeRight
{
    if(currShowing<[imgNameArr count])
    {
        currShowing+=1;
        self.yourDisplayImageView.image = [UIImage imageNamed:[imgNameArr objectAtIndex:currShowing]];
    }
}

//Function to change image when swipe left
-(void)swipeLeft
{
    if(currShowing>0)
    {
        currShowing-=1;
        self.yourDisplayImageView.image = [UIImage imageNamed:[imgNameArr objectAtIndex:currShowing]];
    }
}

Please do leave comment for any query.

Hope it helps.

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