菜鸟教程小白 发表于 2022-12-13 16:59:37

ios - CoreBluetooth "willRestoreState"- 究竟应该在那里做什么?


                                            <p><p>我正在开发一个需要持续运行和跟踪一些外围特征的应用程序。</p>

<p>在前台一切正常。<br/>
它也可以在后台运行,但我不确定我是否正确。</p>

<p>我发了很多关于状态恢复和实现 <code>willRestoreState</code> 的帖子,但其中很多都没有明确告诉你当这个方法被调用时该怎么做。</p>

<p>我正在做的过程是这样的:</p>

<p>我正在使用 </p> 创建一个中央管理器

<pre><code>myCentralManager =
      [ initWithDelegate:self queue:nil
         options:@{ CBCentralManagerOptionRestoreIdentifierKey:
         @&#34;myCentralManagerIdentifier&#34; }];
</code></pre>

<p>从这里开始,我正在执行以下<strong>常规流程</strong>:<br/>
等待中央管理器开机(centralManagerDidUpdateState) -> 扫描我的外围设备 -> 连接到它 -> 发现服务 -> 发现特征 -> 订阅特征 -> 读取数据</p>

<p>然后我杀死我的应用程序使用</p>

<pre><code>kill(getpid(), SIGKILL);
</code></pre>

<p>我正在等待几秒钟,然后再次从我的外围设备开始做广告。 </p>

<p>然后我可以看到进程恢复了生命,并且我的日志显示 AppDelegate 中的 <code>didFinishLaunchingWithOptions</code> 被调用。</p>

<p>然后我像这样恢复中央管理器:</p>

<pre><code> NSArray *identifiers = launchOptions;

   if (identifiers &amp;&amp; identifiers.count &gt; 0) {
      _centralManager = [ initWithDelegate:self
                                                               queue:nil
                                                             options:@{CBCentralManagerOptionRestoreIdentifierKey:}];
    }
</code></pre>

<p>我还可以看到 <code>willRestoreState</code> 和 <code>centralManagerDidUpdateState</code> 正在被调用。</p>

<p>这就是我迷路的地方。
接下来我该怎么办?如果我继续进行常规流程(我在上面描述过,所有似乎都可以正常工作 - 并且以与上述相同的方式。</p>

<p>但是 - 我做对了吗?</p>

<p>我应该在 <code>willRestoreState</code> 中做些什么吗?
如果是,我应该怎么做?</p>

<p>提前致谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>基本上,您将返回已连接的外围设备 - 您应该保存对它的引用并将自己设置为它的委托(delegate)。这是我的代码,非常简单:</p>

<pre><code>   - (void)centralManager:(CBCentralManager *)central willRestoreState:(NSDictionary&lt;NSString *,id&gt; *)dict
{
      //get the handle to the peripheral already connected by the os and set ourselves as the delegate
      NSArray *peripherals = dict;
      if (peripherals.count &gt; 0){
      CBPeripheral* pr = peripherals;
      // Set peripheral required values and start discovering services
      ;
      ;
      ;
      }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CoreBluetooth&#34;willRestoreState&#34;- 究竟应该在那里做什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37796780/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37796780/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CoreBluetooth &#34;willRestoreState&#34;- 究竟应该在那里做什么?