|
|||||||||
|
|||||||||
|
|||
|
Hi,
I need to develop one iphone application to play a m4v movie file. In this application I need to remove playback controls while playing the movie. Please help me to remove the playback controls. Thanks in advance!. by janawin |
|
|||
|
Have you considered adding a transparent UIView? If positioned in front it could block the playback controls.
Code:
uiView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
uiView.opaque = YES; //for performance
uiView.backgroundColor = [UIColor clearColor];
[window addSubview:uiView];
__________________
Game remake |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| MacNN: GizFever releases HDD HDMI TV media player | hackint0sh | Latest Headlines | 0 | 05-27-2009 02:00 AM |
| Crackulous ~Iphone Piracy at its Highest~ | truehybridx | General | 13 | 02-11-2009 03:50 AM |
| MacNN: Apple sued for media player monopoly | hackint0sh | Latest Headlines | 0 | 10-16-2008 07:10 AM |
|
|