vote up 2 vote down star

I'm trying to build a application for the iPhone, although I am completely new to Obj-C. For one problem I'd use a ByteBuffer in Java, but I don't see any appropriate class in Apple's documentation. So I probably have to implement it on my own.

My question is, how to do it best:

  • Is there a similar class in Obj-C? (That would be the best solution ;))
  • Should I do it by using Obj-C classes like NSData?
  • Or should I stay with plain C code?
flag

It really depends on what you're trying to do. You should edit your question to add a little more context. – Alex Mar 24 at 16:16
My aim is to implement a fully functional Obj-C version of java.nio.ByteBuffer. Just wanted to know what I should use to get there. – Koraktor Mar 24 at 16:32

2 Answers

vote up 6 vote down check

You probably want NSMutableData.

link|flag
+1 - that would be it. – Eric Petroelje Mar 24 at 16:13
Ok... do you have any example how to read a e.g. a float from NSMutableData? Or any other data type? – Koraktor Mar 24 at 16:35
AFAIK there are no such methods, but you can implement them yourself as a category of NSData, so they're usable with NSData and any of its subclasses. Just use getBytes:length: to fetch sizeof(float) bytes and then cast the buffer. – Mark Probst Mar 24 at 17:24
vote up 3 vote down

My recollection of java.nio.ByteBuffer (from working with Java many moons ago) is that ByteBuffer implements sequential reads/writes to an array of bytes. This is analogous to an NSInputStream backed by an NSData (for input):

NSInputStream *inputStream = [NSInputStream inputStreamwithData:myData]; //assuming myData is NSData*

float myFloat;

if([inputStream hasBytesAvailable]) { // NO if you've already read to the end of myData
  NSInteger bytesRead = [inputStream read:&myFloat maxLength:sizeof(myFloat)];
  NSAssert(bytesRead == sizeof(myFloat);
}

You can do something similar with an NSOutputStream writing to an NSData.

link|flag
This looks pretty promising. Thank you very much. – Koraktor Mar 24 at 17:40
1  
I'm curious to see how your port turns out and would be very interested in using the result. Please ping me when it's ready. – Barry Wark Mar 24 at 18:01
I'll try to remember. ;) – Koraktor Mar 24 at 19:56
I'm done with a working Obj-C version of ByteBuffer. You can have a look at it here: github.com/koraktor/steam-condenser/…, github.com/koraktor/steam-condenser/… – Koraktor Mar 31 at 8:42
The github.com links are broken, but I'm very excited to take a look when the code is back up. – Barry Wark Mar 31 at 16:40
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.