OGeek|极客世界-中国程序员成长平台

标题: objective-c - 在后台接收 BluetoothManager 通知 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 14:14
标题: objective-c - 在后台接收 BluetoothManager 通知

我在我的应用程序中使用了蓝牙管理器私有(private)框架,我想知道当应用程序在后台时如何接收蓝牙管理器通知(例如:在后台接收连接/断开的蓝牙通知)。

提前致谢。



Best Answer-推荐答案


使用

// global notification explorer
CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(),
    NULL, MyCallBack, NULL, NULL, 
    CFNotificationSuspensionBehaviorDeliverImmediately);

并接收通知:

// global notification callback
void MyCallBack (CFNotificationCenterRef center,void *observer,CFStringRef name,const void object,CFDictionaryRef userInfo)
{
    NSLog(@"CallBack:CFN Name:%@ Data:%@", name, userInfo);
}

关于objective-c - 在后台接收 BluetoothManager 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11079457/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) Powered by Discuz! X3.4