Search code examples
iphoneobjective-cmpmovieplayercontroller

hiding movieControl in iphone OS 3.2 or later


I saw this example on appsmuck.com for seamless video looping, it works fine on iphoneOS 3.0 but doesn't works on 3.2 or above :(

It says movieControlMode is deprecated

http://appsamuck.com/day26.html

can someone tell me how to hide the controls in iphoneOS 3.2 or above.. ?


Solution

  • ok try this one:

    #if __IPHONE_OS_VERSION_MAX_ALLOWED >= 32000
        moviePlayer.controlStyle = MPMovieControlStyleNone;
    #else
        moviePlayer.movieControlMode = MPMovieControlModeHidden; 
    #endif