如何使用 NSLog 显示十六进制字节

发布于 2024-09-19 17:26:54 字数 114 浏览 7 评论 0原文

如何使用 NSLog 显示以下字节?

const void *devTokenBytes = [devToken bytes];

How can I display the following bytes using NSLog?

const void *devTokenBytes = [devToken bytes];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

舞袖。长 2024-09-26 17:26:54

假设 devToken 的类型为 NSData *(来自 bytes 调用),您可以使用 description 方法NSData 获取包含数据字节的十六进制表示形式的字符串。请参阅 NSData 类参考< /a>.

NSLog(@"bytes in hex: %@", [devToken description]);

Assuming that devToken is of type NSData * (from the bytes call), you can use the description method on NSData to get a string containing the hexadecimal representation of the data's bytes. See the NSData class reference.

NSLog(@"bytes in hex: %@", [devToken description]);
相对绾红妆 2024-09-26 17:26:54

如果你想要一个十六进制序列:

NSMutableString *hex = [NSMutableString stringWithCapacity:[devToken length]];
for (int i=0; i < [devToken length]; i++) {
  [hex appendFormat:@"%02x", [devToken bytes][i]];
}

If you want a hex sequence:

NSMutableString *hex = [NSMutableString stringWithCapacity:[devToken length]];
for (int i=0; i < [devToken length]; i++) {
  [hex appendFormat:@"%02x", [devToken bytes][i]];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文