You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A number of inverse relationships in CoreBluetooth (e.g. CBCharacteristic.service) have been changed from unowned(unsafe) to weak, and therefore Optional in the iOS 15 SDK.
This results in numerous compilation errors when attempting use the IOS-CoreBluetooth-Mock library:
~/IOS-CoreBluetooth-Mock/CoreBluetoothMock/Classes/CBMCentralManagerNative.swift:391:51: Value of optional type 'CBService?' must be unwrapped to a value of type 'CBService'
The text was updated successfully, but these errors were encountered:
A number of inverse relationships in CoreBluetooth (e.g.
CBCharacteristic.service
) have been changed fromunowned(unsafe)
toweak
, and therefore Optional in the iOS 15 SDK.This results in numerous compilation errors when attempting use the IOS-CoreBluetooth-Mock library:
The text was updated successfully, but these errors were encountered: