I am trying to add a UIButton to the view of a MPMoviePlayerController along with the standard controls. The button appears over the video and works as expected re
My solution to the same problem was:
alpha
property, with the proper durations;touchesBegan
, and use that to toggle the button's visibility (using its alpha);By trial-and-error, I determined that the durations that matched the (current) iOS ones are:
Of course this is still fragile; if the built-in delays change, mine will look wrong, but the code will still run.