tags:

views:

20

answers:

2

I know in the old days of iPhone OS 2.x this was clearly impossible. But how about now? Did they finally find a way to enable this? I need to play a movie in a small region of the screen. About 250x250 points only.

+1  A: 

Yes Possible after SDk 4.0

use [[movieplayer view] setFrame:CGRectMake(0, 0, 200, 100)];

Ashish Mathur

ashiPhone

Ashish Mathur
+2  A: 

It is possible in iOS3.2+ (ie on any iPad or on iPhone with iOS4).

You need to use MPMoviePlayerViewController instead of MPMoviePlayerController, and setup its view as you need.

jv42