0
votes
2answers
547 views

Objective-C warning, Use of undeclared identifier 'new'

I am getting this error Use of undeclared identifier 'new' on this line of code Byte* decompressedBytes = new Byte[COMPRESSION_BLOCK]; This is my method that this line of code appears in. // ...
1
vote
1answer
104 views

Difference between initWithData and initWithBytes of NSString

I'm confused with the use of the following methods of NSString initWithData:encoding: Returns an NSString object initialized by converting given data into Unicode characters using a given ...
0
votes
1answer
174 views

ObjC: Append data to NSMutableData, byte count inconsistent?

There's this NSMutableData *dump to which I must append some NSData *chunk. chunk is 440 bytes and contains the raw bytes read from a file. The file also weights 440 bytes. Good so far. Now, I must ...
0
votes
1answer
346 views

Xcode (Cocoa) how to write byte to NSData

Xcode... I want to write one byte (1) to NSData. It seems very simple but im not able to find the proper link how to do it. I try to do that using unsigned char. But that stores the hex value.
1
vote
2answers
525 views

how to test NSData for specific bytes values (a.k.a. header)

I have varied NSData flowing to my class. some of these could be rtf formatted strings. now I've discovered (hopefully correctly) that all rtf formatted strings begin with data: <7b5c7274 ...
0
votes
1answer
149 views

NSData too many and wrong order when sending bytes for wifi device

I am trying to send some data to a wireless device. The data I want to send is a byte array (i.e. Byte stuff[4]). I have done this with a serial cable and works fine. But for the wireless version, ...
0
votes
1answer
165 views

Converting integer from 0 to 255 ( 1 byte ) into NSDATA

I need exactly 1 byte for some kind of socket based application and i cant find a way to create it.
0
votes
1answer
264 views

NSString from NSData with the character: fl

How can I return back to an NSString from the byte date of the NSString containing this character: fl ? NSString *inflatedString01 = @"fl"; // original code that was the problem! NSData *dataOfString ...
0
votes
2answers
611 views

iPhone: NSData and Byte conversation issue?

I want to send iPhone image to server database. I wrote following code. I am getting data mismatch exception and not able to resolve it. Could anyone please help me out. Code on iPhone side: - ...
2
votes
1answer
1k views

Append String with unichar

I got some weird issue here. The code is as below NSMutableString *unicodeString = [NSMutableString string]; for (NSUInteger i = 0; i < [data length]; i++) { unsigned char byte; [data ...
1
vote
3answers
546 views

asyncSocket writeData crashes with different NSData

If I use this to set up NSData then the writeData method crashes. NSString *test = @"The quick brown fox jumped over the lazy dog\r\n"; NSData *data = [test ...
1
vote
3answers
1k views

Convert UIImage into bytes

I am getting UIImage using UIImagePickerController. How can i calculate number of bytes hold by that Image in kb/mb ? Using that values I have to make logic that user cant add Images more than size ...
2
votes
1answer
990 views

NSData Bytes to Float - iPhone SDK

Is there any way I can convert the value of a [NSData bytes] to a float so that I can add it to a progress bar? Thanks, Kevin
4
votes
1answer
9k views

Create UiImage from NSData

Below is code I copied (from this site) and modified only slightly since the original code would not compile. I want to manipulate the byte array for edge detection and eventually simple changes to ...
0
votes
2answers
2k views

Does NSNumber add any extra bytes to the number it holds?

I'm working with Objective-C and I need to add int's from a NSArray to a NSMutableData (I'm preparing a to send the data over a connection). If I wrap the int's with NSNumber and then add them to ...