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.
NSNumber のバイト値を取得して、NSData オブジェクトに変換したいと考えています。TCP 接続を介してバイトとして送信する必要があるため、UTF8 などとしてエンコードすることはできません。
前もって感謝します!
int integer = [num intValue]; NSData *data = [NSData dataWithBytes:&integer length:sizeof(integer)];