如何禁用iOS上的MPMoviePlayerViewController上的单指双击缩放?

时间:2013-02-12 16:13:43

标签: ios ios5 ios6

使用MPMoviePlayerViewController时,默认行为是当您用一根手指双击视频时,视频会稍微放大。

如何禁用此功能?因为我想要双击来触发放大以外的其他行为。

1 个答案:

答案 0 :(得分:0)

做一些类似的事情(它对我来说很好!:)):

[[[self.moviePlayer view] subviews] enumerateObjectsUsingBlock:^(id view, NSUInteger idx, BOOL *stop) {
    [[view gestureRecognizers] enumerateObjectsUsingBlock:^(id tap, NSUInteger idx, BOOL *stop) {
        if([tap isKindOfClass:[UITapGestureRecognizer class]]) {

            if([tap numberOfTapsRequired]==2)
            {
                [view removeGestureRecognizer:tap];

            }
        }
    }];
}];