I want to play a music file through ear speaker,
What I am doing now is:
In viewDidLoad method ::::
[[AVAudioSession sharedIns
You need to change the category of AVAudioSession
like this:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
Find more details in Audio Session Programming Guide:
You can programmatically influence the audio output route. When using the AVAudioSessionCategoryPlayAndRecord category, audio normally goes to the receiver (the small speaker you hold to your ear when on a phone call).