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.
Objective CのNSData変数から24バイト後の残りのバイトを読み取る方法は?
subdataWithRange:のメソッドを使用して、最初の 24 バイト以降のデータを持つオブジェクトNSDataを取得できます。NSData
subdataWithRange:
NSData
あなたは次のようなことをします:
NSData *newData = [data subdataWithRange:NSMakeRange(24, [data length] - 24)];
getBytes:range:バッファ内のバイトを返すメソッドもあります。
getBytes:range: