iOS.Lover
iOS.Lover

Reputation: 6051

Movie background iPhone SDK

I am trying create an application with movie background , I have a .mov video clip which i want put it on background and overlay with buttons and .... what is the best way to do so ? does MPMovieController good idea ?

Upvotes: 1

Views: 616

Answers (1)

Charlie Fish
Charlie Fish

Reputation: 20566

I think you could use a MPMovieController. Then remove the controls (play, pause).

moviecontroller.controlStyle = MPMovieControlStyleNone;

Then make it so that it repeats.

moviecontroller.repeatMode = MPMovieRepeatModeOne;

Hope this helps!

Upvotes: 2

Related Questions