日期:2011.05.12
MPMoviePlayerController 的player的view加入到某个view的时候,无法注册UITapGestureRecognizer的单击事件,但是双击,甚至三击都可以。
处理方法是:在play.view上面加入一个同样的大小的子view,然后把手势操作注册到这个view上。
UIView *aView = [[UIView alloc] initWithFrame:mPlayer.view.bounds];
[mPlayer.view addSubview:aView];
[aView release];
这么写,该view就自动透明了,真奇怪。
+++++