I want to use NSCoder and transfer NSString and UIImage with single NSData over bluetooth

you can simply say, "I want to sent NSData over bluetooth which contains UIImage and NSString"

Help me out,,,

It is very complex question, and I am stuck here since two days :-(

link|improve this question

73% accept rate
Show us what you did so far ... so we can guide you to finish this task. It's general question and it's not clear where you're stuck ... – Chiefly Izzy Apr 1 '11 at 11:45
feedback

1 Answer

up vote 1 down vote accepted

Create a objective-c class with propertys NSString and UIImage
Than you need to implement

 -(void) encodeWithCoder: (NSCoder *) encoder
{
[super encodeWithCoder:encoder];
[encoder encodeObject: [self yourString] forKey:@"string"];
[encoder encodeObject: [self yourImage] forKey:@"image"];
}

-(id) initWithCoder: (NSCoder *) decoder
{
[super initWithCoder:decoder]; 
self.yourString = [decoder decodeObjectForKey:@"string"];
self.yourImage = [decoder decodeObjectForKey:@"image"];

return self;
}

now the problem is, that UIImage doesn't implement encodeWithCoder the solution can you find here: Archiving UIImages with NSCoder

link|improve this answer
@Thanx Seega, I found answer, and accepted yours :-) – Veer Apr 5 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

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