swift3 中的后续行会出错。
out = UnsafeMutablePointer<Bytef>(data.mutableBytes)
无法使用类型'UnsafeMutablePointer<Bytef>'
为“(UnsafeMutableRawPointer)”的参数列表调用类型的初始化程序
swift3 中的后续行会出错。
out = UnsafeMutablePointer<Bytef>(data.mutableBytes)
无法使用类型'UnsafeMutablePointer<Bytef>'
为“(UnsafeMutableRawPointer)”的参数列表调用类型的初始化程序
我不是 100% 确定我理解你在问什么,但是,处理数据指针的方式在 swift3 中发生了一些变化:
当我想在 swift2 中访问数据流中的实际字节时,你会做一些时髦的指针东西,将数据转换成一个不安全的可变指针,然后指向一个数组,[UInt8]
该数组直接引用了数据流中的所有字节。
根据您的要求,您过去可能一直在尝试做类似的事情。
您现在有两个命令withUnsafeBytes
和withUnsafeMutableBytes
. 在 swift2 中,我曾经通过获取字节并将其转换为指针数组来处理数据(类似于您正在做的事情)。
在 swift 3 中,您现在可以执行以下操作:
return data.withUnsafeBytes { (bytes: UnsafePointer<UInt8>) -> Bool in
return 1 == Int((bytes[1] & 0x2) >> 1)
}
或这个:
rawData.withUnsafeMutableBytes {
(bytes: UnsafeMutablePointer<UInt8>) -> Void in
bytes[0] = newValue.rawValue
}
这是你想要的?