iPhone - 将触摸事件传递给MPMoviePlayerController

时间:2011-06-17 06:59:05

标签: iphone touch mpmovieplayercontroller

是否可以将触摸事件(通过编码)传递给MPMoviePlayerController? 我不想检测触摸。只需通过触摸事件。 我想生成一个事件并将其传递给MPMoviePlayerController,就像用户触摸了播放器一样。像用户在位置x = 100和y = 100时触摸了玩家 (由于某些限制,我无法详细说明。)

2 个答案:

答案 0 :(得分:0)

您是否尝试过扩展MPMoviePlayerController并确保通过所有触摸事件。

您甚至可以通过将播放器视图添加为子视图,然后在Controller中重载触摸事件来确保触摸播放器视图。然后打印出触摸,您可以看到播放器是否从其视图中通过了触摸。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    NSLog(@"Video Touched?? %@",touches); 
 }

答案 1 :(得分:0)

我们需要在电影播放器​​上放置透明视图并处理该视图的触摸。