سؤال

أريد وضع فيلم في طلبي بدءا ولكن أريد إخفاء عناصر تحكم الفيلم مثل (إيقاف، تشغيل، التالي و ... هنا هو رمزي:

#import <MediaPlayer/MediaPlayer.h>



-(void)viewDidLoad
{
     NSBundle *bundle = [NSBundle mainBundle];
     NSString *moviePath = [bundle pathForResource:@"myvideo" ofType:@"mp4"];
     NSURL *movieURL = [[NSURL fileURLWithPath:moviePath] retain];
     MPMoviePlayerController *IntroMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
     [IntroMovie play];
}
هل كانت مفيدة؟

المحلول 2

حسنا، أنا أحسب ذلك.

رمز:

IntroMovie.movieControlMode = MPMovieControlModeHidden;

نصائح أخرى

يمكنك القيام بذلك IntroMovie.controlStyle = MPMovieControlStyleNone;

منذ. تم إهمال moviecontrolmode.

في الهدف - ج

moviePlayer.controlStyle = MPMovieControlStyleNone;

في سويفت

 moviePlayer.controlStyle = MPMovieControlStyle.None
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top