gpt4 book ai didi

ios - 无法推断通用参数 'self'

转载 作者:行者123 更新时间:2023-11-28 13:32:43 25 4
gpt4 key购买 nike

我正在尝试从我正在使用的蓝牙设备转换值中的字节,但我得到 Generic parameter 'Self' could not be inferred 对此我不知道什么意思

var speed: UInt16 = 0
_ = withUnsafeBytes(of: &speed, {characteristic.value!.copyBytes(to: $0, from: 0...1)})

最佳答案

错误信息具有误导性。实际问题是 withUnsafeBytes 使用指向给定参数的原始字节的只读 缓冲区指针调用闭包。你需要的是withUnsafeMutableBytes:

var speed: UInt16 = 0
_ = withUnsafeMutableBytes(of: &speed, {
characteristic.value!.copyBytes(to: $0, from: 0...1)
})

关于ios - 无法推断通用参数 'self',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57116415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com