Hi,
I am new to this P-List concepts.
Here i want to store entire NSObject in to P-List at a time instead of storing elements of NSObject one by one. And I have to retrive entire object when it is required.
below NSObject i have
@interface Controller : NSObject
{
NSString *personName;
NSString *phoneNumbers1;
NSString *phoneNumbers2;
NSString *location;
NSString *petName;
}
now I want to store this entire NSObject in to P-List instead of storing each and every element individually.