在 iPhone 上播放短动画 xCode

发布于 2024-09-11 22:28:04 字数 276 浏览 4 评论 0原文

感谢您过去几周从本论坛获得的所有建议。

现在我遇到一个问题需要您的帮助:

我想在 iPhone 上显示一系列短动画(5 个动画,每个 10 秒)。动画将循环,但代码将决定是否重复当前循环或启动另一个循环(笑脸、喊叫脸、哭脸等)。

我有点担心,如果我用要播放的单个图像设计这个动画,应用程序的大小会爆炸。于是我就想到了视频。另一方面,我们需要将动画与变化的图像叠加,因此视频可能会很麻烦。

关于最好的方法有什么想法吗?

感谢您的所有建议。

汤姆

thanks for all your advice I took out of this forum over the last weeks.

Now I've a problem where I would need your help:

I want to show a series of short animations (5 animations, 10 sec each) on the iPhone. The animation would loop but the code will decide if the current loop is repeated or another loop will be started (Laughing face, shouting face, crying face etc.).

I am a little concerned that if I would design this animation with single images to be played the size of the app would explode. So video came to my mind. On the other hand we need to overlay the animation with changing images, so video could be a kind of hassle.

Any ideas about the best way to go?

Thanx for all your advice.

Tom

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

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

发布评论

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

评论(1

别念他 2024-09-18 22:28:04

对于 5 个每个 10 秒的动画,我建议使用单个图像。您可以使用 UIImageView 的内置动画和重复计数。编码将非常容易。

仅确保在创建图像数组时不要使用 [UIImage imageNamed:@""],因为您可能有很多图像。此方法创建一个自动释放对象,您不希望许多此类对象在您的应用程序中闲逛。

For 5 animations of 10 seconds each, i would suggest using single images. And you can use UIImageView's inbuilt animation with repeat count. It will be very easy to code.

Only make sure not to use [UIImage imageNamed:@""] while creating image arrays as you might have many images. This method creates an autorelease object and you wouldn't want many such objects hanging around in your app.

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