English 中文(简体)
在 iphone 发送错误中以程序方式打开蓝牙
原标题:Turn on Bluetooth programmatically in iphone giving error

我想在 iPhone 中打开蓝牙语法。 这是我的代码。

Class BluetoothManager = objc_getClass("BluetoothManager");
id btCont = [BluetoothManager sharedInstance];
[btCont setPowered:YES];

我把.header文件放在页眉页脚下面,置于跟踪路径下:

/开发者/平台/iPhoneOS.平台/开发者/SDKs/iPhoneOS5.0.sdk/System/Library/私营框架/蓝牙管理者。

但问题是它给了我一个错误, 即: 找不到蓝牙管理器/ 蓝牙管理器. h 文件 。

所以,请告诉我,如果我做错了什么在这里。

我从下面的链接找到这些东西:

"https://stackoverflow.com/ questions/1743610 progratically-turn-on-blueooth- in-the-iphone-sdk"> progratically turn on blueooth in-the-iphone-sdk iphone stk 中的蓝牙?

Thank you very much In advance.

最佳回答

我发现一个简单的方法, 用“ GameKit” 框架在蓝牙上捕捉。

实施步骤:

  1. 在您的工程中添加 GameKit 框架 。

  2. 导入您的工程类 -- -- # import GameKit/ GameKit.h>

  3. create object of GKPeerPickerController GKPeerPickerController *connectionPicker;

  4. 将此代码粘贴在视野中

    connectionPicker = [[GKPeerPickerController alloc] init]; connectionPicker.delegate = self; [connectionPicker show];

它展示了启动蓝牙的警示弹出 并点击了是的 你会打开蓝牙的

但我不知道该如何定制弹出, 所以如果有人知道,请告诉我。

提前感谢大家。 :)

问题回答

首先,要确定一下, 你知道你不能在航运应用程序中使用它,对吧?

查看 < a href=>" "https://stackoverflow.com/ questions/10272349/ios-5-1-toggle-blueooth-by-blueoothmanager" >这个答案 ,它解释了如何生成您所需要的页眉文件 。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签