ios - 当服务在 iPhone 中运行时不是 nil 时,BLE 特性为 nil
<p><p>在我的项目中,我使用与我的 iPhone 连接的 BLE 外围设备。当我超过最大连接距离时,通信断开,然后我回来,通信连接。但重新连接后,特性无法写入数据!似乎特征是零,但服务不是零。我必须再次运行我的应用程序,以便特征可以正常写入数据。有没有人有同样的情况,或者有什么想法?等待帮助。</p>
<pre><code> -(void) writeCharacteristicValue:(int )value forCharacteristic:(CBCharacteristic *)charateristictype:(CBCharacteristicWriteType ) type
{
NSLog(@"writeCharacteristicValue");
NSData*data = nil;
u8 val = value;
if (nil == servicePeripheral)
{
NSLog(@"Not connected to a peripheral");
return ;
}
if (nil == charateristic)
{
NSLog(@"No valid characteristic");
return;
}
data = ;
;
NSLog(@"dataWithBytes value %d",val);
}
CoreBluetooth <CBConcreteCharacteristic: 0x1ed5f1c0> is not a valid characteristic for peripheral <CBConcretePeripheral: 0x20002520 UUID = <CFUUID 0x20078a60> BE196610-C2A1-5D22-3E71-6851718F9672, Name = "Finder", IsConnected = YES>
</code></pre>
<p>有时 NSLog "No valid characteristic",所以我认为特征是 nil 。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>问题解决了!
我将连接的服务放在 NSMutableArray 中,当外围设备断开连接时,我无法从连接的服务数组中删除服务。因此,下次我从数组中获取服务时,它会返回已发布的错误服务。
现在,我更改了我的代码并及时删除了断开的服务。它运作良好! </p></p>
<p style="font-size: 20px;">关于ios - 当服务在 iPhone 中运行时不是 nil 时,BLE 特性为 nil,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16212762/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16212762/
</a>
</p>
页:
[1]