I want to try BluetoothManager. But I'm really confused after reading and testing all the entries here.
I first found in
Xcode/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk/System/Library/PrivateFrameworks/BluetoothManager.framework
necessary structure. But there was only a binari file. So I add the Headers folder and put BluetoothManager.h in it.
In my project, I add this framework, but it cannot find the BluetoothManager.h file, so I get an error message if I use
#import "BluetoothManager.h"
or
#import <BluetoothManager/BluetoothManager.h>
I want to use the following code to run BT:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
I also tried all the ideas here:
here or here or here
Does anyone have a really good idea, tutorial, or a really running example of using (PrivateFramework /) BluetoothManager to switch Bluetooth to iPhone, SKD 5.1?
Thank you very much.
isicom
source share