I've problem with NSCoding. Here is what I'm trying to achieve: I want to serialize class using nscoding, sent it as an attachment by email and unserialize it on other device. Serializing seems to be working, sending by email also but deserialization is not working..
ViewController with sending method:
- (IBAction)buttonTapped:(id)sender {
[self checkIfFolderExists];
MPSampleClass *sampleClass = [[MPSampleClass alloc] init];
sampleClass.przekazanyString = @"aaaaaa !!!";
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* newDir = [documentsDirectory stringByAppendingPathComponent:@"/Exports"];
[NSKeyedArchiver archiveRootObject:sampleClass toFile:[NSString stringWithFormat:@"%@/%@", newDir, @"myClass.myfiletype"]];
MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
[controller setSubject:@"User list"];
controller.mailComposeDelegate = self;
[controller setMessageBody:@"MessageBody" isHTML:NO];
NSData *data = [NSData dataWithContentsOfMappedFile:[NSString stringWithFormat:@"%@/%@", newDir, @"myClass.myfiletype"]];
if([data length]>0)
{
[controller addAttachmentData:data mimeType:@"application/myclass" fileName:@"myClass.myfiletype"];
[self presentModalViewController:controller animated:YES];
}
[controller release];
}
AppDelegate method to open custom attachment:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
if ([url isFileURL]) {
NSData *data = [NSData dataWithContentsOfURL:url];
if([data length]>0)
{
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
MPSampleClass* sampleClass = [[MPSampleClass alloc] initWithCoder:unarchiver];
}
}
return NO;
}
MPSampleClass methods
- (void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeObject:@"aaaaaa" forKey:@"przekazanyString"];
}
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super init];
if(self)
{
self.przekazanyString = [[aDecoder decodeObjectForKey:@"przekazanyString"] retain];
NSLog(@"%@", self.przekazanyString);
}
return self;
}
Application goes through decoding method but it print out as a null
TestMailSending[1118:907] (null)
Any ideas what is wrong?