vote up 1 vote down star

I have one problem to work with NSMutableData.

I defined one NSMutableData *receivedData, and tried to copy several NSData* data to the receivedData. I just called [receivedData appendData:data], but appears the data is not copied:

....
NSLog(@"get data! Received %d bytes of data",[data length]);
  // output is not zero, say 1231.

[receivedData appendData:data];
NSLog(@"after append! length is %d bytes of data",[receivedData length]);
  // showing zero

Thanks.

flag

79% accept rate

2 Answers

vote up 6 vote down check

Check if receivedData == nil. If so, then you might have forgotten to initialize it. For example:

receivedData = [[NSMutableData alloc] init];

Then release it when you don't need it anymore:

[receivedData release];
receivedData = nil;
link|flag
Yes, that's the problem. Originally I thought if it is nil, it will report error. Thanks so much. – BlueDolphin Dec 24 '08 at 12:52
In Objective-C it is legal to send messages to nil, so no error there. – Abizern Dec 24 '08 at 16:17
vote up -1 vote down

Best regards. I got this same problem, and now, its solved.

link|flag

Your Answer

Get an OpenID
or

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