如何使用 NSLog 显示十六进制字节
如何使用 NSLog 显示以下字节?
const void *devTokenBytes = [devToken bytes];
How can I display the following bytes using NSLog?
const void *devTokenBytes = [devToken bytes];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设
devToken
的类型为NSData *
(来自bytes
调用),您可以使用description
方法NSData 获取包含数据字节的十六进制表示形式的字符串。请参阅 NSData 类参考< /a>.Assuming that
devToken
is of typeNSData *
(from thebytes
call), you can use thedescription
method on NSData to get a string containing the hexadecimal representation of the data's bytes. See the NSData class reference.如果你想要一个十六进制序列:
If you want a hex sequence: