objective-c - 在后台接收 BluetoothManager 通知
<p><p>我在我的应用程序中使用了蓝牙管理器私有(private)框架,我想知道当应用程序在后台时如何接收蓝牙管理器通知(例如:在后台接收连接/断开的蓝牙通知)。</p>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>使用</p>
<pre><code>// global notification explorer
CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(),
NULL, MyCallBack, NULL, NULL,
CFNotificationSuspensionBehaviorDeliverImmediately);
</code></pre>
<p>并接收通知:</p>
<pre><code>// global notification callback
void MyCallBack (CFNotificationCenterRef center,void *observer,CFStringRef name,const void object,CFDictionaryRef userInfo)
{
NSLog(@"CallBack:CFN Name:%@ Data:%@", name, userInfo);
}
</code></pre></p>
<p style="font-size: 20px;">关于objective-c - 在后台接收 BluetoothManager 通知,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11079457/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11079457/
</a>
</p>
页:
[1]