ActiveLook / ios-sdk

iOS SDK for ActiveLook eyewear
https://www.activelook.net/
Apache License 2.0
10 stars 8 forks source link

Force cast provoque des crashs #7

Closed jonseguin closed 2 months ago

jonseguin commented 2 years ago

La présence de force-cast provoque parfois des crashs.

Notamment, j'ai déjà eu 2-3 crashs lié à la classe Glasses, ligne 234 : peripheral.writeValue(value, for: rxCharacteristic!, type: .withResponse)

Pour éviter les problèmes, remplacer par :

if let rxCharacteristic = rxCharacteristic {
  peripheral.writeValue(value, for: rxCharacteristic, type: .withResponse)
}