Вы всегда можете прикрепить UITapGestureRecognizer
к виду и обработать метчики.
UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[moviePlayer.view addGestureRecognizer:tap];
[tap release];
И обработать метчик в handleTap:
- (void)handleTap:(UITapGestureRecognizer *)gesture {
// Do some other action as intended.
}
Конечно, это работает толькона iOS 3.2
и позже.