How to show “Loading Movie…” message with MPMoviePlayerController

老子叫甜甜 提交于 2019-12-05 14:43:37

This is answer to your follow-up question, but anyways... You can speed-up things a little bit with this:

prepareToPlay
Prepares the current item for playback. (required)

- (void)prepareToPlay  

This method is called automatically when you call the play method. Calling it before you call play gives the receiver a chance to prepare items sooner and may result in decreased latency when starting playback. However, calling this method may also interrupt any active audio sessions.

Available in iOS 3.2 and later. Declared In MPMediaPlayback.h

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!