When I connect the iphone to a dock my app display the message: "Conector dock". I want to detect when the phone is connected with other device and hide the MPVolumeView to avoid those messages.

I am using MPVolumeView as the usual:

MPVolumeView *myVolume = [[MPVolumeView alloc] initWithFrame:CGRectMake(10, 435, 300, 0)];
[myVolume sizeToFit];
[self.view addSubview:myVolume];
[myVolume release];

Could anyone help me?

link|improve this question

71% accept rate
feedback

2 Answers

You could monitor the battery state.

[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];

if ([[UIDevice currentDevice] batteryState] != UIDeviceBatteryStateUnplugged) {
    // if you end up in here, then you are connected to some power source
    // and you can hide your MPVolumeView
}

More information about the battery state can be found at Apple's UIDevice documentation.

Hope this helps!

link|improve this answer
In this case when I plug the phone to a computer this will cause the MPVolumeView stay hidden. I do not want this behaviour. – flopes Dec 12 '11 at 18:02
Your question is confusing then. I am not certain what you are trying to do. – Michael Dautermann Dec 12 '11 at 19:07
A dock is a external device that I can plug the phone to provide some extra features. There are docks to play music with external speakers, charge the phone, among other features. Usualy you plug the phone directly without the usb cable. – flopes Dec 13 '11 at 12:45
Actually, docs are usually connected to the 12-pin-connector (or USB-thingy), which triggers this battery state. – Emil Feb 9 at 18:32
feedback
up vote 0 down vote accepted

I did that by adding the observers that follow:

NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
EAAccessoryManager *accessoryMamaner  = [EAAccessoryManager sharedAccessoryManager];

[accessoryMamaner registerForLocalNotifications];
[notificationCenter addObserver: self  selector: @selector (accessoryDidConnect:)   name: EAAccessoryDidConnectNotification object: nil];
[notificationCenter addObserver: self  selector: @selector (accessoryDidDisconnect:)   name: EAAccessoryDidDisconnectNotification object: nil];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.