views:

53

answers:

1

NSData means what? how to implements its characterstics in java?

+4  A: 

NSData is an array of bytes with flexible size (for the mutable version).

(I guess the corresponding Java type is byte[].)

KennyTM