0

我正在开发一个可以播放一些动画短片的应用程序。此时我唯一的选择是嵌入动画帧。它工作得很好。但我只是想知道是否有另一种方法可以将动画文件直接嵌入为影片剪辑,以避免导入大量帧。也许图像压缩会更好。

在这方面,我知道这些替代方案:MediaPlayer 框架、MPMoviePlayerController 在这里展示了http://mobile.tutsplus.com/tutorials/iphone/mediaplayer-framework_mpmovieplayercontroller_ios4/以及其他一些技术在这里展示了http://www.raywenderlich。 com/13418/how-to-play-record-edit-videos-in-ios

然而,这意味着使用 Apple 的 UI。相反,我想创建一个使用我自己的应用程序 UI 的更集成的体验。

有图书馆吗?

4

1 回答 1

1

看看 AVPlayer 类参考 https://developer.apple.com/library/mac/#documentation/AVFoundation/Reference/AVPlayer_Class/Reference/Reference.html
和 AVPlayerLayer 类参考 http://developer.apple.com/library/ios/#documentation/AVFoundation/Reference/AVPlayerLayer_Class/Reference/Reference.html
它有能力做你需要的。您也可以像其他 CALayers 一样为图层设置动画

于 2013-02-05T10:31:52.983 回答