2

我有一个按钮,当点击视频时,我想像 iOS MPMoviePlayer 控件一样显示和隐藏它。除了制作我自己的手势识别器和计时器来在苹果的时候隐藏/显示按钮之外,还有更好的方法吗?

4

1 回答 1

1

那将是你最好的选择。这大概是它的样子:

UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(videoTapped:)];
[videoView addGestureRecognizer:recognizer];

...

- (void)videoTapped:(UITapGestureRecognizer *)recognizer {
    [UIView animateWithDuration:0.25f animations:^{
        buttonView.alpha = (CGFloat)!buttonView.alpha;
    }];
}

如果您还有其他问题,请告诉我。

于 2013-08-03T00:12:09.207 回答