vote up 0 vote down star

How do I create a cache for a struct pointer object in Objective-C? Is there any third party component for caching objects as Java and .NET have?

I have the following struct:

typedef struct _news {
  references
  char *headline;
  char *story_url;
} news;

I have a double pointer for the above struct in an interface class. I would like to cache it for some time using Objective-C.

flag
Your terminology is a little bit confusing. Structs are not objects in Objective-C. Are you trying to ask how to store a struct as an instance variable of an object? – Chuck Jan 21 '09 at 19:19

1 Answer

vote up 0 vote down

Are you searching for something like this?

// save
NSMutableData *data = [[NSMutableData alloc] init];
[data appendBytes:&p length:sizeof(news)];

// read
struct news *begin = (struct news *)[data bytes];
link|flag

Your Answer

Get an OpenID
or

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