我試圖輕掃手勢添加到player.view.subviews[0].
如何添加滑動手勢在全屏模式下的MPMoviePlayerController在iOS6的
我GOOGLE了很多次,但未能得到有效的解決方案。
我的代碼很正常。就像
UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeAction:)];
UIView *subView = player.view.subviews[0];
[subView addGestureRecognizer:swipeLeft];
它工作在IOS5但不是在6時播放器處於全屏模式。 有什麼建議嗎?
它在IOS7中工作。非常感謝! 順便說一句:它仍然不能在IOS6中工作。 – echo