Hiding Controlls in movi player
can i hide controls (that play/pause next/previous) bar from my开发者_运维问答 application movie?
If you are using MPMoviePlayerController
you can use its controlStyle
property.
movieController.controlStyle = MPMovieControlStyleNone;
精彩评论