Pass the address of the integer, not the integer itself. appendBytes:length:
expects a pointer to a data buffer and the size of the data buffer. In this case, the "data buffer" is the integer.
[myData appendBytes:&myInteger length:sizeof(myInteger)];
Keep in mind, though, that this will use your computer's endianness to encode it. If you plan on writing the data to a file or sending it across the network, you should use a known endianness instead. For example, to convert from host (your machine) to network endianness, use htonl()
:
uint32_t theInt = htonl((uint32_t)myInteger);
[myData appendBytes:&theInt length:sizeof(theInt)];