You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you play a youtube video in fullscreen, you won't be able to touch the movie ...
So, after inspecting the hitTest in CLSplitCascadeView, I saw some views :
MPTransportButton, MPDetailSlider, UINavigationButton, MPVideoView
So, place the code at the begining of hitTest :
(maybe the substring to index MP is not ideal, but works for my project).
If you play a youtube video in fullscreen, you won't be able to touch the movie ...
So, after inspecting the hitTest in CLSplitCascadeView, I saw some views :
MPTransportButton, MPDetailSlider, UINavigationButton, MPVideoView
So, place the code at the begining of hitTest :
(maybe the substring to index MP is not ideal, but works for my project).
UIView *normalBehaviourView = [super hitTest:point withEvent:event];
Or
if( [normalBehaviourView isKindOfClass:NSClassFromString(@"UINavigationButton")]
|| [normalBehaviourView isKindOfClass:NSClassFromString(@"MPTransportButton")]
|| [normalBehaviourView isKindOfClass:NSClassFromString(@"MPDetailSlider")]
|| [normalBehaviourView isKindOfClass:NSClassFromString(@"MPVideoView")])
{
return normalBehaviourView;
}
The text was updated successfully, but these errors were encountered: