加载图像时出现问题...iPhone xcode
我想以这样的方式对图像进行动画处理,即当用户单击按钮 2 时,6 个图像会在屏幕上 1 个 1 个闪现。问题是图像动画太慢了。假设我使用 6 个按钮,每个按钮有 6 个图像,我将如何做才能在单击按钮时实现快速反馈。
I want to animates images in such a way that when user click on button 2 so 6 images splash 1 by 1 on the screen. The problem is that image animation is too much slow. Let suppose i am using 6 buttons, Each button have 6 images what will i do in order to achieve fast feedback when click on the button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要减少动画持续时间..
就像如果我想要我的动画持续时间为 0.4 秒然后写 [animation setDuration:0.4f];
you need to decrease animation duration..
like if i want my animation duration for 0.4 seconds then write [animation setDuration:0.4f];
您可以尝试使用 Quartz 用于图像处理的内置库。
You can try using the Quartz built-in library for image manipulation.