How to display hexadecimal bytes using NSLog

前端 未结 2 1395
轮回少年
轮回少年 2021-02-19 20:43

How can I display the following bytes using NSLog?

const void *devTokenBytes = [devToken bytes];
2条回答
  •  梦谈多话
    2021-02-19 21:18

    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]);

提交回复
热议问题