views:

91

answers:

2

Hai all,

in my application i need to play a streaming audio, i used MPMoviePlayerController to play the audio, it works fine, but i don't want the Logo and controls appearing on the screen( like playing in the background).

is there any way to hide the logo and controls ?

thanks

+1  A: 

There is no way to do this with the current Apple api. If you want to use undocumented api's, you can always access the private methods. Here is a good place to start looking:

Erica Sadun's Core Dumps 1
Erica Sadun's Core Dumps 2

coneybeare
A: 

Take a look at:

MPMusicPlayerController

or AVAudioPlayer

JBRWilkinson