how to find Bluetooth audio devices in iOS

First you will need to configure your applications audio session to allow bluetooth connections that support audio. You can do this in, for example, your application delegates – (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method. Make sure you link the AVFoundation Framework and import in headers that will use it. #import <AVFoundation/AVFoundation.h>// place in .h [self prepareAudioSession];// … Read more