I am trying to store an NSAttributedString to a Core Data SQL store.

I have the property set as a "transformable", it is optional and it is NOT transient or indexed and the value transformer name is set to default "NSKeyedUnarchiveFromData". In the .xcdatamodel and generated the managed object class which has this in the .h:

@property (nonatomic, retain) id Text; (I have tried changing id to NSAttributedString *Text)

and this in the .m:

@dynamic Text;

I look through and set the ".text" property of my NSManagedObject to the attributed string then when completed I do:

NSError *error = nil;
[managedObjectContext save:&error];

This through is causing this error in the output:

[NSCFType encodeWithCoder:]: unrecognized selector sent to instance 0xc04edb0 Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFType encodeWithCoder:]: unrecognized selector sent to instance 0xc04edb0'

I have checked the class of what I am storing to the property and it is NSAttributedString also I check responsesToSelector @selector(:) and this returns true so very confused as this is contrary to the error message?

Please advise.

Thanks James

link|improve this question

I had this before, but it was a memory issue. Try to run the app with NSZombieEnabled = YES – frenetisch applaudierend Nov 24 '10 at 11:30
We do already have NSZombieEnabled enabled. Thanks James – jodm Nov 24 '10 at 11:33
Do I need to have transient ticked? I am getting conflicting messages online? – jodm Nov 24 '10 at 11:34
Where in your stack trace does this happen? It could be possible that one of the attributes of the string does not support NSCoding. – frenetisch applaudierend Nov 24 '10 at 11:39
It happens directly after save on the managed object context and I get no NSLog's after that? We build our NSAttributedString up using small chunks of Attributed Strings which are converted to CFAttributedStrings to add styling then added back to the NSAttributedString. We have NSLogged the attributed string and the 2 things it contains are NSFont and NSParagraphStyle (both of which conform to NSCoding?). – jodm Nov 24 '10 at 11:44
show 9 more comments
feedback

4 Answers

up vote 1 down vote accepted

I was checking the Apple Developer Forums and found a thread almost exactly the same as this question, one person had done this but unfortunately did not share the code. All they said was the following:

"In Core Data i have an transformable in the database and i us my own NSVauleTransformer. This is a subclass of NSValueTransformer and creates an attributed string from the data object and back.

Therefore i created a class called PersistableAttributedString which is NSCoding compliant. This class has a string and an array of attributes and builds the attributed string. I also created a class for the possible text attributes which is NSCoding compliant. Together the string and the attributes are all NSCoding compliant.

The class NSAttributedString is also NSCoding compliant, but the attributes are not, that's the problem."

Hope that might help.

link|improve this answer
perhaps a link to that thread . . . – deanWombourne Nov 26 '10 at 10:42
That thread now has an answer to this question. – Joshua Dec 3 '10 at 7:11
feedback

OK... Some kind of break through although not a good one...

If we NSLog the attributed string then we can see in there it has NSFont and NSParagraphStyle in. Although these are NOT NSFont and NSParagraphStyle in the code these are CTFontRef and CT Dictionaries of paragraph styles... These are not NS objects although in NSLog they output as these and therefore guess that is why we can not perform the "encodeWithCoder" selector on the object.

IF in the code we just do "NSFont;" the compiler says "NSFont undeclared" so what can we do as we only have the CT functions?

As my colleague said in the comments above if we set the ".text" property to just "NSAttrinutedString *string = [NSAttributedString alloc] initWithString:@"test"] it saves fine and if we remove all the styling from the one we WANT to save it also works!

THERE MUST BE A WAY OF STORING NSATTRIBUTED STRING WITH STYLING INTO CORE DATA... NO?

Any ideas greatly appreciated.

-JM

link|improve this answer
feedback

It's the font that's giving you grief - a CTDictionary is toll-free bridged to NSDictionary which implements NSCoding so should encode fine.

You might have to deal with the font yourself :( - here's a sucky way of doing it.

1) Instead of storing the NSAttributedString, break it down and put each of it's components into an array.

2) Go through the array - if you see font ref you must store just the information required to re-create this font - have a look at the CTFontCopyFontDescriptor function and the CTFontDescriptorCopyAttribute function should let you get font attributes as a string. Put all these into a NSDictionary which should store in core data fine.

3) Store this array in core data - hopefully all the items in the array will be NSCoding compliant so you should be fine.

...

To recreate your string, when you load from coredata, if you see an NSDctionary representing font attributes you should be able to re-create the fCTFontDescriptor and from that the font.

Then, put your string back together.

link|improve this answer
May I ask why NSFont is causing grief, when it implements NSCoding? Unfortunately it also causes problems with NSParagraphStyle, so it doesn't appear to only be the font that is causing the grief. – jowie Nov 24 '10 at 15:43
The main reason we wanted to store the attributed string to Core Data was so we did not have to re-parse anything back when pulling it out of the database. We thought about this option earlier as there are only 8 unique styled paragraph as we though about having dictionaries of styles. If have to re=parse on output then there is no point and we may aswell just parse each time... :o( – jodm Nov 24 '10 at 15:48
Yeah sorry forgot to say and to add to @joe's point... The first thing it finds is a paragraph and it crashes on that too :O( – jodm Nov 24 '10 at 15:49
blast - I'd just assumed that NSFont didn't do NSCoding and that was why it was failing. Oh well, I should learn never to assume :) Given there's a client deadline, I'd just break it down and do it by hand :( – deanWombourne Nov 24 '10 at 16:11
feedback

Another idea would be to create a Custom Class of NSAttributedString and somewhere use enumerateAttributesInRange:options:usingBlock: to get all the attributes of the string and then save the NSDictionary with the attributes and ranges in to Core Data aswell as the attributed string stripped of it's attributes.

Then when the string is loaded again you could apply the attributes that are in the dictionary to the attributed string using initWithString:attributes:.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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