I want to create a button that mutes the audio from an AVPlayer.
Why can´t I use .volume with AVPlayer, only with AVAudioPlayer? Is there another way to change the v
As of iOS 7 there is also a muted property on AVPlayer:
muted
AVPlayer
@property (nonatomic, getter=isMuted) BOOL muted NS_AVAILABLE(10_7, 7_0);