Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从目标 c 中的 NSData 变量读取 24 个字节后的其余字节?
您可以使用 的subdataWithRange:方法NSData来获取包含NSData前 24 个字节之后的数据的对象。
subdataWithRange:
NSData
你会做这样的事情:
NSData *newData = [data subdataWithRange:NSMakeRange(24, [data length] - 24)];
还有getBytes:range:一种方法可以返回缓冲区中的字节。
getBytes:range: