私がこれを行う場合:
self.productVideo = [[MPMoviePlayerController alloc] initWithContentURL:movieClip];
self.productVideo.controlStyle = MPMovieControlStyleNone;
self.productVideo.shouldAutoplay = YES;
[self.productVideo prepareToPlay];
self.productVideo.repeatMode = MPMovieRepeatModeOne;
self.productVideo.view.frame = self.productImage.frame;
self.productVideo.view.userInteractionEnabled = NO;
[self.view insertSubview:productVideo.view belowSubview:self.productImage];
画像の下に明確に追加している場合、ムービーは画像の上に表示されます。ムービーの上にオーバーレイ イメージを配置することはできませんか?