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
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.
In this code window is my UIWindow which is set to Key and Visible.Code:uiView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; uiView.opaque = YES; //for performance uiView.backgroundColor = [UIColor clearColor]; [window addSubview:uiView];
Bookmarks