10
votes
2answers
257 views
cocoa 64bit binaries leak memory? (releasing NSData does not free memory)
i've been playing some time with different builds of my application and there seem strange things to happen:
my app has a 5mb idle footprint. when uploading a file memory in size …
3
votes
1answer
496 views
Encrypted NSData to NSString in obj-c?
I have an iPhone app which encrypts an inputted NSString using CCCrypt (AES256) and a plaintext key. The string and key are given to the encryption method which returns an NSData o …
3
votes
2answers
221 views
[NSData writeToFile:options:error:] fails, but no error object is returned. Why?
I'm trying to understand the meaning of the value returned by [NSData writeToFile:options:error:]. The method returns a BOOL, which according to Apple's documentation is "YES if th …
2
votes
3answers
139 views
Read only a portion of a file from disk in objective-c
I am reading a very large file using a NSInputStreamer and sending them to a device in packets. If the receiver does not get a packet, I can send back to the sender with a packet …
2
votes
1answer
208 views
NSData initWithContentsOfURL: options: errorPtr: delegate object?
Is there a way to assign some sort of delegate object when
[[NSData alloc] initWithContentsOfUrl:... options:... errorPtr:...]
is called so that I can monitor percentage complet …
2
votes
4answers
362 views
Read only “N” bytes from a file in Cocoa
How to read only "N" bytes from a specified file?
1
vote
2answers
48 views
Unzip NSData without temporary file
Hello, I've found a couple of libs (LiteZip and ZipArchive) that allow to unzip files on iPhone. But both of them require an input as a file. Is there a library that allows to dire …
1
vote
1answer
57 views
NSData Behaving as a Consumable Data Stream. Possible?
I am currently doing a lot of data wrangling. I ingest a lloonngg NSData byte streams and then parse that data. The parsing is trivial. However, I have to simulate consumption of t …
1
vote
2answers
94 views
NSData & NSMutabledata. How do I read from within the body of a data object?
I have a lllooonnnggg NSMutableData instance. I want to feed non-overlapping sub-ranges this data to other objects. I've perused the NSData/NSMutableData docs and don't quite have …
1
vote
1answer
76 views
iPhone - parsing nsdata to get multiple files stored there.
I'm trying to find a the new line and returns that are inside a nsdata object that I'm parsing . Here's some code:
uint8_t *arr = [receivedData bytes];
NSUInteger begin1 …
1
vote
2answers
233 views
NSData to NSString converstion problem!
Hi guys,
I'm getting an html file as NSData and need to parse it to extract some info. My approach was to convert it to NSString with UTF8 encoding (the html has non english chara …
1
vote
2answers
192 views
Saving/loading a 2D C array with NSKeyedArchiver
Malloc like this
int **terrain;
terrain = malloc(sizeof(int*) * mapSize.x);
for (int i = 0; i < mapSize.x; i++) {
terrain[i] = malloc(mapSize.y * sizeof(int));
}
Use it.
…
1
vote
1answer
185 views
What is NSConcreteData, and where is it defined?
The following code:
[[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:mapURL]]
returns an instance of NSConcreteData as opposed to NSData (which I expected!). What does …
1
vote
2answers
887 views
NSString to Nsdata
How to convert NSString value to NSData..
thanks and regards
1
vote
1answer
592 views
iPhone - int to NSData?
I'm making an iPhone app where I want to save state of the Application. This includes an int property which I'm persisting to a file on its own. I have it written and working, but …
