I am making a request to my database and in response I am receiving a bunch of data that I am putting into a nsdata object using NSURLConnection methods like so.
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
// Append the new data to receivedData.
// receivedData is an instance variable declared elsewhere.
[receivedData appendData:data];
}
The data in the NSData object has a identifier value for each section of code its represented by a UInt16 variable 1-what ever..
I would like to know how I could identifiy those values then start decoding the data.
my plan is to create a class with a method in it that I pass the data into from the method above. The receiving method would then divide the packet up and most likely pass each section off to a respective method that could then decode it and/or do checks on it etc etc.
Im just not sure how I can identify those leading values that are data representations of UInt16 variables.
I hope I have made some sense, if you are able to make some suggestions or example code that would be awesome!