如何使用 xcode 对一组动态图像进行动画处理?
我有一个网址列表。每个 url 都有一个特定大小的图像。
我想做的是,我想解析这些 URL 并提取图像。然后将这些图像作为图像数组提供给 UIImageView,这将为它们设置动画。
就像您想要将在线存储的照片以不同的动画显示到您的 iPad 应用程序一样。
如何实现从 URL 到 UIImageView 的转换?
我正在使用 Xcode 4 for iPad 应用程序。
感谢您的帮助。
I have a list of URL. Each url has an image of specific size.
What I want to do is, I want to parse those URLs and extract image. And then give those images to UIImageView as an array of images which will animate them.
Take it as you want to display your photos stored somewhere online to your ipad application with different animation.
How can i achieve the transition from URL to the UIImageView?
I am using Xcode 4 for iPad application.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为首先你必须从你拥有的 URL 中获取图像并将它们放入一个数组中,然后将该数组设置为
UIImageView
的animationImages
。然后设置UIImageView
的animationDuration
、animationRepeatCount
并在此UIImageView
上调用startAnimating
。要从 URL 解析图像,请使用 -
然后将此图像添加到数组中。
UIImageView 动画 -
有关 UIImageView 动画的更多信息,请关注 -
http://appsamuck.com/day2.html
I think first of all you have to fetch images from the URL's you have and put them inito an array and then set this array as
animationImages
of aUIImageView
. Then setanimationDuration
,animationRepeatCount
ofUIImageView
and callstartAnimating
on thisUIImageView
.To parse images from URL use-
then add this image to a array.
UIImageView animation -
for more info about UIImageView animation follow-
http://appsamuck.com/day2.html