gpt4 book ai didi

ios - 'withUnsafeMutableBytes' 在 Swift 5 中被弃用

转载 作者:行者123 更新时间:2023-11-28 20:50:36 26 4
gpt4 key购买 nike

我使用了以下代码块并且工作正常。使用 swift 5,我收到以下已弃用的警告:

'withUnsafeMutableBytes' is deprecated: use withUnsafeMutableBytes<R>(_: (UnsafeMutableRawBufferPointer) throws
-> R) rethrows -> R
instead

data.withUnsafeMutableBytes { (dataBytes: UnsafeMutablePointer<UInt8>) -> Void in
_ = CCRandomGenerateBytes!(dataBytes, size)
}

如何避免此警告。

最佳答案

你应该使用:

data.withUnsafeBytes { $0.load(as: UInt8.self) }

您还可以使用以下方法生成随机 UInt8:

UInt8.random(in: .min ... .max)

关于ios - 'withUnsafeMutableBytes' 在 Swift 5 中被弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58856802/

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