gpt4 book ai didi

swift - 从 Int 转换为 Hex 值然后将 hex 值附加到 Data 对象后出现错误 Swift?

转载 作者:行者123 更新时间:2023-11-28 05:55:30 25 4
gpt4 key购买 nike

在尝试附加数据对象转换为十六进制值后,我有如下代码,但它给了我以下错误:

Unexpectedly found nil while unwrapping an Optional value

let n = 585
let result = 255 - n % 256 //182 is result
let hexValue = String(result, radix: 16) //b6 is result
var returnMsg = "[1,1,1, ,#00300".data(using: .utf8) as! Data
returnMsg.append(UInt8(hexValue)!)

我在这里尝试将 b6 添加到数据对象。

最佳答案

您使用字符串作为十六进制字符串获取 result 只是为了附加到 returnMsg 是没有用的。只需附加 result

let n = 585
let result = 255 - n % 256 //182 is result
var returnMsg = "[1,1,1, ,#00300".data(using: .utf8)!
returnMsg.append(UInt8(result))

您的崩溃是由强制展开 UInt8(hexValue) 引起的。传入字符串 b6 会得到 nil 结果,而 nil 的强制解包总是会导致崩溃和您看到的错误消息。采用字符串的 UInt8 初始化程序只接受以 10 为底的整数。您可以在文档中看到这一点:

The string passed as description may begin with a plus or minus sign character (+ or -), followed by one or more numeric digits (0-9).

If description is in an invalid format, or if the value it denotes in base 10 is not representable, the result is nil.

关于swift - 从 Int 转换为 Hex 值然后将 hex 值附加到 Data 对象后出现错误 Swift?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51597859/

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