如果我这样做:
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];
当我清楚地将它添加到图像下方时,电影出现在图像顶部。不能在电影上叠加图像吗?