在我的应用程序中,我想使用sdk 4.3打开/关闭iPhone Bluetooth.i m ..我对蓝牙管理器框架有所了解,但它不适用于4.3 ..任何想法?或者我们可以通过编程方式确定蓝牙是否开启/关闭?
答案 0 :(得分:3)
请注意,您无法在App Store上发布该应用,因为这样做必须使用私有API。
如果您仍想这样做,请阅读以下链接: Is there a way to toggle bluetooth and/or wifi on and off programmatically in iOS?
注意添加GameKit框架以使其工作,而不是使用所有其他东西,如添加.h文件等,除非gameKit不能解决所有问题。
答案 1 :(得分:2)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
#if TARGET_IPHONE_SIMULATOR
exit( EXIT_SUCCESS ) ;
#else
/* this works in iOS 4.2.3 */
Class BluetoothManager = objc_getClass( "BluetoothManager" ) ;
id btCont = [BluetoothManager sharedInstance] ;
[self performSelector:@selector(toggle:) withObject:btCont afterDelay:1.0f] ;
#endif
return YES ;
}
#if TARGET_IPHONE_SIMULATOR
#else
- (void)toggle:(id)btCont
{
BOOL currentState = [btCont enabled] ;
[btCont setEnabled:!currentState] ;
[btCont setPowered:!currentState] ;
}
#endif
我从here
获得的上述代码行答案 2 :(得分:1)