如何将位字段的字节附加到 NSMutableData
我有一个结构,
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)];
但我收到请求位字段地址的错误。如何附加字节?
I have a struct
typedef struct {
int8_t foo : 1;
} Bar;
I have tried to append the bytes to a NSMutableData object like so:
NSMutableData* data = [[NSMutableData alloc] init];
Bar temp;
temp.foo = 1;
[data appendBytes:&temp.foo length:sizeof(int8_t)];
But I receive an error of Address of bit-field requested. How can I append the bytes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指向字节,屏蔽所需的位,并将变量附加为字节:
Point to the byte, mask the needed bit, and append the variable as a byte: