我有一个结构
typedef struct {
int8_t foo : 1;
} Bar;
我试图将字节附加到NSMutableData对象,如下所示:
NSMutableData* data = [[NSMutableData alloc] init];
Bar temp;
temp.foo = 1;
[data appendBytes:&temp.foo length:sizeof(int8_t)];
但是我收到了请求的位字段地址错误。如何附加字节?
答案 0 :(得分:0)
指向该字节,屏蔽所需的位,并将该变量附加为字节:
typedef struct {
int8_t foo: 1;
} Bar;
NSMutableData* data = [[NSMutableData alloc] init];
Bar temp;
temp.foo = 1;
int8_t *p = (int8_t *)(&temp+0); // Shift to the byte you need
int8_t pureByte = *p & 0x01; // Mask the bit you need
[data appendBytes:&pureByte length:sizeof(int8_t)];