external-accessory

How to access EAAccessories?

eaManager = [EAAccessoryManager sharedAccessoryManager]; [eaManager registerForLocalNotifications]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(gotDevice) name:EAAccessoryDidConnectNotification object:nil]; [eaManager connectedDevices] is always empty. How can I pair to a accessory? ...

Can an iPhone app with a wildcard bundle identifier work with external accessory framework?

I am trying to develop an iPhone app that integrates properly with a "Made for iPhone" accessory. There is conflicting documentation as to whether applications with wildcard Bundle Identifiers will work properly. I need to know whether An app with a wildcard identifier will show up in the app store when the accessory is connected and...